csScatter: Error in match(x, table, nomatch = 0L)
Hello everyone,
I am getting this error in csScatter command.
> csScatter(genes(cuff))
Error in match(x, table, nomatch = 0L) :
argument "x" is missing, with no default
Could anyone of you suggest something for this.
Thanks and regards
Megha varshney
• 5,741 views
•
link
1 answer
From the csScatter help:
csScatter(object, x, y, logMode=TRUE, pseudocount=1.0, labels, smooth=FALSE, colorByStatus = FALSE, drawRug=TRUE, ...)
and:
x Sample name for x axis
y Sample name for y axis
As x and y do not have defaults, you have to pass them for the function call:
csScatter(genes(cuff), "X_axis_name", "Y_axis_name")
edit: please do not cross-post, it is not nice.
• 0 views
•
link
Log in to answer this question.
Crosspost: http://seqanswers.com/forums/showthread.php?t=59004
Looks like problem with your genes(cuff) data object. I have never experienced this and hard to comment without checking at the actual data. Check if the object is empty (or it has any genes in).
For a comparison, use this as a reference.
As far as I know, then their no problem with object because I'm getting this return value and other plots like cdDensity and dispersion-plot with same object.