Hi Manish,
Try
> cat(sqrt(2),"\n")
1.414214
See ?cat for more information.
HTH,
Jorge.-
On Mon, Mar 19, 2012 at 10:42 PM, Manish Gupta <> wrote:
> How to avoid [1] in output?
>
> print(sqrt(2),row.names=NULL)
> *[1] *1.414214
>
> How to avoid it?
>
> print(sqrt(2),row.names=NULL)
> 1.414214
How to avoid [1] in output?
print(sqrt(2),row.names=NULL)
*[1] *1.414214
How to avoid it?
print(sqrt(2),row.names=NULL)
1.414214
Regards
--
View this message in context:
http://r.789695.n4.nabble.com/Output-formatting-in-Latex-and-R-tp4483631p4487480.html
Sent from the R help mailing list a
Use the eol="\n\n" option. The records should have a 2 line space.
--
View this message in context:
http://r.789695.n4.nabble.com/Output-formatting-in-Latex-and-R-tp4483631p4485457.html
Sent from the R help mailing list archive at Nabble.com.
__
R-help
Hi,
I am using follosing code and getting the below output.
<>=
infile<-read.table("/home/manish/Desktop/test.txt",sep="\t",header=TRUE)
Col3 <- unique(infile[,3])
LCol3 <- length(Col3)
for (i in 1:LCol3) {
print(paste("Disease Risk:", Col3[i]),row.names=FALSE,
col.names=FALSE,quote=FALSE)
print
Great it works! But how can i put space or tab between two records?
--
View this message in context:
http://r.789695.n4.nabble.com/Output-formatting-in-Latex-and-R-tp4483631p4483921.html
Sent from the R help mailing list archive at Nabble.com.
__
R-hel
Col3 <- unique(Msg17$V3)
LCol3 <- length(Col3)
for (i in 1:LCol3) {
print(paste("Column", Col3[i]))
write.table(Msg17[Msg17$V3==Col3[i],-3], row.names=F, col.names=F,quote=F)
# If you R implementation does not accept 'F', use 'FALSE'
}
--
View this message in context:
http://r.789695.n4.nabbl
I am working on Latex and R and using following code.
<>=
infile<-read.table("test.txt",sep="\t")
Col3 <- unique(infile[,3])
LCol3 <- length(Col3)
for (i in 1:LCol3) {
print(paste("Column", Col3[i]))
print(infile[infile[,3]==Col3[i],-3])
}
@
I am getting following output.
1] "Column C" V1 V2
7 matches
Mail list logo