Displaying 2 results from an estimated 2 matches for "aggdata".
Did you mean:
oggdata
2011 Nov 29
1
hour in x-axis
Dear R useres, got the following problem. Given the AggData (listed below)
I need to plot AggData[,2] vs time (AggData[,1]) for chosen 'rows'. Ive done
already:
plot(AggData[rows,2], xaxt='n')
axis(1,at=seq(1,length(rows),1),sub("","", AggData[rows,1]))
which works, but I need to list only chosen data points, say full h...
2005 May 24
1
input line length in Sweave
I am having trouble in Sweave with input line lengths. For example, I may have in my input file the chunk
<<>>=
BrainSections <-
levels(AggData$sctn)[grep(
"(^BRAIN)|(^WHOLEBRAIN)|(LEFT HEMISPHERE)| (HALFBRAIN)",
levels(AggData$sctn))]
@
This is translated in the tex file:
\begin{Sinput}
> BrainSections <- levels(AggData$sctn)[grep("(^BRAIN)|(^WHOLEBRAIN)|(LEFT HEMISPHERE)| (HALFBRAI...