This example illustrates how to plot a time series of temperature from a csv data file.
library(ggplot2)
# Original data not provided, see subset/plotted data below
datos.orig<-read.csv("data.csv",header=TRUE) # read csv data
# Change dates to POSIXct
fecha<-as.data.frame(a...