Re: [R] Help with Time Series Plot‏

2011-03-17 Thread Peter Ehlers
On 2011-03-17 16:37, Axel Urbiz wrote: Dear List, This is an embarrassing question, but I can seem to make this work…How do I change the font size on the xlab and on the numbers shown in the x-axis on the time series plot below. The arguments cex.lab and cex.axis do not seem to be 'passing' to

Re: [R] Help with Time Series Plot‏

2011-03-17 Thread Dennis Murphy
Hi: Try this: plot(ts(rnorm(100), start = 2004, freq = 12), xaxt = 'n', yaxt = 'n', xlab = '', ylab = '') axis(1, at = c(2004:2012), cex.axis = 0.7) axis(2, cex.axis = 0.7) title(xlab = 'My X lab', ylab = 'RQI', cex.lab = 0.1) The illegible dots in the region where the axis labels would nor

[R] Help with Time Series Plot‏

2011-03-17 Thread Axel Urbiz
Dear List, This is an embarrassing question, but I can seem to make this work…How do I change the font size on the xlab and on the numbers shown in the x-axis on the time series plot below. The arguments cex.lab and cex.axis do not seem to be 'passing' to the plot function. plot(ts(rnorm(100), s

[R] help with time Series regression please

2010-01-19 Thread snowcat wong
Dear all, I am having difficulty to built a model of quarter sales of spirits data, and deciding which is the best model. The yfit2, yfit3, and yfit4 lines was not appeared right at the end. The data and script is enclosed with this email. I am using the harmonic regression model to exam

[R] Help with time series

2009-10-21 Thread ehxpieterse
Hi there, I am having trouble getting the plotting of multiple time series to work. I have used RBloomberg to download data, which I then convert to a data frame. After I have calculated my new index values, I would like to plot the new index. My problem is that I can't get the plot feature to

Re: [R] Help with time series

2009-09-28 Thread David Winsemius
On Sep 28, 2009, at 4:07 PM, steve_fried...@nps.gov wrote: Hello I'm working with a bunch of time series data. The data are downloaded from a server and stored as ascii files prior to reading them into R. After reading the data sets read into R with no problem and I can us the ts funct

[R] Help with time series

2009-09-28 Thread Steve_Friedman
Hello I'm working with a bunch of time series data. The data are downloaded from a server and stored as ascii files prior to reading them into R. After reading the data sets read into R with no problem and I can us the ts function to coerce them to time series, sometimes this works and sometime

Re: [R] help with time series

2009-01-30 Thread Gabor Grothendieck
Copy and paste this into an R session: Lines <- "Date,stage 4/2/1953,7.56 4/3/1953,7.56 4/4/1953,7.54 4/5/1953,7.53 4/6/1953,7.5 4/7/1953,7.47 4/8/1953,7.44 4/9/1953,7.41 4/10/1953,7.37 4/11/1953,7.33 4/12/1953,7.3 4/13/1953,7.26 4/14/1953,7.28 4/15/1953,7.28 4/16/1953,7.23 4/17/1953,7.47 4/18/195

Re: [R] help with time series

2009-01-30 Thread Mike Lawrence
To seperate the columns, use the "sep" argument in read.table() mystage <- read.table("C:\\Documents and Settings\\skfriedman\\Desktop\\R-scripts\\stage.txt", header = TRUE,sep=',') On Fri, Jan 30, 2009 at 4:17 PM, wrote: > > Hello everyone > > > I'm working with R 2.8.1 on a windows machine >

[R] help with time series

2009-01-30 Thread Steve_Friedman
Hello everyone I'm working with R 2.8.1 on a windows machine I have a question regarding time series analysis The first question is how does R expect the input file to be structured? I'm working with a *.txt file similar to the abbreviated one here: Date,stage 4/2/1953,7.56 4/3/1953,7.56 4/4