search for: dichiarante

Displaying 1 result from an estimated 1 matches for "dichiarante".

2011 Jun 24
1
try to generate graph for each element of my list
Dear all, I have the following problem. I have a List of time series dataframe.I'm trying to produce specific graph for each element of my list. The code is: This is my list: Lista_import<-lapply(Lista_import, function(x){ x2<-subset(x, select=c("ANNO","DICHIARANTE","PARTNER", "quota")) x2<-cast(x2, ANNO+DICHIARANTE~PARTNER) x2<- as.xts(as.matrix(as.timeSeries(x2))) return(x2)}) each list have the following shape: $AUS $DEU and data inside...I'm not showing you the content cause I think is not relevant For the GRaph th...