Displaying 3 results from an estimated 3 matches for "bmtrend".
2010 May 01
2
Re :
Hi All,
I am new to R and the mailing list.
I have a data file (.xls) format with little bit large (16 column,35000 rows
) data file. I am trying to read this file for calculation. I have
converted the file into .csv format and read like that :
> bmtrend <- read.csv(file="simple.csv",head=TRUE,sep=",")
> bmtrend
will display something in the middle of display
[ reached get Option("max.print") -- omitted 30061 rows ]]
It will not show the full list of data.
please suggest me best way to read large file?
Th...
2010 May 01
1
Re :reading large file
...e:
> Hi All,
>
> I am new to R and the mailing list.
>
> I have a data file (.xls) format with little bit large (16 column,35000
> rows ) data file. I am trying to read this file for calculation. I have
> converted the file into .csv format and read like that :
>
> > bmtrend <- read.csv(file="simple.csv",head=TRUE,sep=",")
>
> > bmtrend
>
> will display something in the middle of display
>
> [ reached get Option("max.print") -- omitted 30061 rows ]]
>
> It will not show the full list of data.
>
> please...
2010 May 17
0
Re : append new line in existing graph
...$return = shell_exec("/usr/bin/R --slave --args ".$Domain.",".$Gender." <
/var/www/html/trends/newTrend.R");
In newTrend.R, I am plotting graph and save in pdf file using the below
code. It will create a pdf file with two line.
pdf(file="/var/www/html/trends/bmtrend.pdf", height=7.5, width=10.5)
g_range <- range(0,index , ReqDataindex)
plot(index, type="o", col="blue", ylim=g_range,axes=FALSE, ann=FALSE)
axis(1, at=1:7, lab=c(1:daycount))
axis(2, las=1, at=25*0:g_range[2])
box()
lines(ReqDataindex, type="o", pch=22,...