Skip to content
Prev 13488 / 15379 Next

[R-es] Plot. window error- Usando R base. Gráfico

Carlos
Al especificar los limites, no me sale ningun error, aunque no consigue
graficar, nada,


  # Look at the time series for each country for the time period, for
instance GDPPC
  for (i in 1:length(countrylist)){
     currcty <- countrylist[i]
    filename <- paste("index",currcty,".png",sep="")
    png(filename,width=800,height=600)
        plot(y=eco_freedom3$SUMMARY.INDEX[eco_freedom3$Countries==currcty],
x=eco_freedom3$Year[eco_freedom3$Countries==currcty], ylim = c(2.85, 8.20),
xlim = c(2000, 2016), type="l", ylab="INDEX",xlab="YEAR",
         main = paste("Countries", currcty))
    dev.off()
  }
On Wed, 4 Sep 2019 at 11:57, Carlos Ortega <cof en qualityexcellence.es> wrote: