I need some help with ggplot2. I have got some meteorological data and want to plot the time series. I've tried using a R script it worked for this type of data with light modifications. But when try to ggplot I get an error I've never seen before (not so experienced as R user).
The code I'm using
library(ggplot2)
library(zoo)
datos=read.csv("dat.txt",header=TRUE,sep=";")
fecha=as.POSIXct(datos[,1], format="%d/%m/%Y")
tmax = ggplot(data=datos,aes(x=fecha, y=TempMax)) + geom_line(colour="red")
The error I get when writing tmax is
Error in cut.default(unclass(x), unclass(breaks), labels = labels, right = right, :
a vector of length 1317420001 could not be assigned
Data structure for dput can be found at https://www.dropbox.com/s/rkh6db9aqdyfw7k/dputdatos.txt
and original data at https://www.dropbox.com/s/ds5zp9jonznpuwb/dat.txt
datos$fecha <- as.POSIXct(datos[,1], format="%d/%m/%Y")– DWin Apr 26 '12 at 13:46