Displaying 8 results from an estimated 8 matches for "rowlab".
2001 Feb 16
2
print.matrix segfaults if rowlab vector too short (PR#850)
print.matrix(x) segfaults if the vector supplied to 'rowlab' is
*shorter* than nrow(x):
> version
_
platform i686-pc-linux-gnu
arch i686
os linux-gnu
system i686, linux-gnu
status
major 1
minor 2.1
year 2001
month 01
day 15
language R
[installed from RPM]
> x<-1:4
> dim(x)<-c(2,2)
> x
[,1]...
2003 Mar 06
1
Suppressing row labels.
...uestion). I can of
course edit these out ``by hand'', but that's a bit of a pain in the
pohutukawa.
I recently discovered (reading the help on print.data.frame
meticulously, and following it through to print.matrix) that
I CAN suppress these row names by executing, e.g.
> print(x,rowlab=rep("",nrow(x)))
However it would be ever-so-slightly nicer (require somewhat fewer
key strokes) if there were an option to print.data.frame that would
allow suppression of row names. E.g. an argument ``srn=FALSE''.
(Where ``srn'' stands for ``suppress row names''...
2003 Mar 06
1
Suppressing row labels.
...uestion). I can of
course edit these out ``by hand'', but that's a bit of a pain in the
pohutukawa.
I recently discovered (reading the help on print.data.frame
meticulously, and following it through to print.matrix) that
I CAN suppress these row names by executing, e.g.
> print(x,rowlab=rep("",nrow(x)))
However it would be ever-so-slightly nicer (require somewhat fewer
key strokes) if there were an option to print.data.frame that would
allow suppression of row names. E.g. an argument ``srn=FALSE''.
(Where ``srn'' stands for ``suppress row names''...
2007 Jan 07
3
MDS in 3D
Hi,
I have tried to develop multidimensional scaling for 3D space using PCA without success, yet;-) Is there some application ready in R?
Cheers,
Atte
2008 Aug 02
3
Bubble plots
Is there a way to create a 'bubble plot' in R?
For example, if we define the following data frame containing the level of y observed for 5 patients at three time points:
time<-c(rep('time 1',5),rep('time 2',5),rep('time 3',5))
2005 Mar 02
2
Suppressing observation numbers
Dear R gurus,
Below is a part of the R output. Please consider the two lines:
> data
> model.matrix(m1)
Is there a way of suppressing the observation numbers 1, 2, ...27 in the
output (I don't want these number to appear in the output)?
Regards,
NKN
> # Orthogonal blocking
> data=read.table("cut.txt",header=T)
> attach(data)
> data
b x1 x2 x3
1 1 -1 -1 0
2
2005 Aug 12
3
Dating Objects
Hi
I know this subject has been mentioned before but from the mail archives
I'm under the impression that this is not possible ?
I'm trying to carryout the equivalent of ls -l in R to give some
date/time label to each of my objects
If the case is that there is no equivalent, is it possible to list all
objects in an environment that share a common component ?
So that the common
2008 Aug 05
0
P values in non linear regression and singular gradients using nls
...## column totals
text(
x=(1:nx) + nlabels.y*rowmar + 0.25 -1,
y=0.25,
labels=format(c(sumz, rowsumz), digits=label.digits)[-1],
font=1,
cex=par("cex")*0.75,
adj=c(0.5,0.0)
)
## row totals
rowlabs <- format(c(sumz, colsumz), digits=label.digits)[-1]
width <- max(strwidth(rowlabs),na.rm=TRUE)
text(
x=nx + nlabels.y*rowmar-0.25+width,
y= (ny:1),
labels=rowlabs,
font=1,
cex=par("cex")*0.75,
adj=c(1.0,...