search for: countrylist

Displaying 8 results from an estimated 8 matches for "countrylist".

2019 Sep 04
3
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 =...
2019 Sep 04
2
Plot. window error- Usando R base. Gráfico
Lo que obtengo es dim(currcty) = NULL lo que hice es crear una lista de paises countrylist <- unique(length(eco_freedom2$Countries) Los datos son de esta forma head(eco_freedom2, 5) Year ISO_Code Countries SUMMARY.INDEX X1..Size.of.Government 641 2000 AGO Angola NA NA 601 2001 AGO Angola NA NA 561 2002...
2019 Sep 04
2
Plot. window error- Usando R base. Gráfico
...or ? > > si pruebas a cambiar X a numérico (continuo) ? > > Slds, > > Eric. > > > > > On 04-09-19 13:06, Antonio Rodriguez Andres wrote: > > Lo que obtengo es dim(currcty) = NULL > > > > lo que hice es crear una lista de paises > > > > countrylist <- unique(length(eco_freedom2$Countries) > > > > Los datos son de esta forma > > head(eco_freedom2, 5) > > Year ISO_Code Countries SUMMARY.INDEX X1..Size.of.Government > > 641 2000 AGO Angola NA NA > > 601 2001...
2019 Sep 04
3
Plot. window error- Usando R base. Gráfico
Hola queridos usuarios de R Estoy intentando hacer un gráfico de una variable en el tiempo para un conjunto de países usando R base, con el comando plot. Tengo 40 países y son 15 años. Lo quiero salvar como formato png, cada uno de ellos. Tengo el siguiente código, for (i in 1:length(countrylist)){ currcty <- countrylist[i] filename <- paste("index",currcty,".png",sep="") png(filename,width=800,height=600) plot(y=eco_freedom2$SUMMARY.INDEX[eco_freedom2$Countries==currcty], x=eco_freedom2$Year[eco_freedom2$Countries==currcty], type=&qu...
2019 Mar 25
2
Uso de merge
...n_col_names [1] "Country" "Year" nrow(sub_kei) <- 132 nrow(knowledge) <- 3864 Tiene distinto numero de pais como de año, en el sub_kei aparecen 5 años y en el otro dataset (knowledge) datos anuales de 1995 a 2017. Yo quiero que el merge dataset aparezcan todos los años countrylist <-unique(sub_kei$Country) > countrylist [1] Argentina Brazil Colombia China Czech Republic [6] Greece Hungary India Indonesia Israel [11] Malaysia Mexico Pakistan P...
2019 Jan 15
0
CentOS 6.X, iptables 1.47 and GeoLite2 Country Database
...wap the contents of the live set with the temp set and finally delete the temp set. This is a more efficient way of updating an existing set. Once the ipset has been created, you can create rules in iptables to match against that set using -m set --match-set SETNAME. Hope that helps -- Phil CountryList="cn ru ua kp kr br ro tr vn in" if [ -e /tmp/countries.txt ]; then rm /tmp/countries.txt fi for country in $CountryList; do curl -o /tmp/$country.txt http://www.ipdeny.com/ipblocks/data/aggregated/$country-aggregated.zone cat /tmp/$country.txt >> /tmp/countries.txt done getnet...
2019 Jan 15
2
CentOS 6.X, iptables 1.47 and GeoLite2 Country Database
On Mon, Jan 14, 2019 at 07:29:45AM +0000, Phil Perry (pperry at elrepo.org) wrote: > On 14/01/2019 07:09, Jobst Schmalenbach wrote: > > Hi > I use ipdeny's aggregated country lists to do the same thing: > > http://www.ipdeny.com/ipblocks/data/aggregated/ > > I just feed this data directly into ipset/iptables via a script running on > my firewall (not a C6 box).
2019 Mar 25
2
Uso de merge
Hola usuarios de R Estoy tratando de usar merge, para dos data frame, sin embargo al usarlo me da resultado correcto, en términos de emparejamiento de pais y año, pero lo que me hace es que el dataframe *y* me hace como un append por filas. Las variables comunes son país y año. Alguna sugerencia? combine = merge(sub_kei, knowledge, by = common_col_names, all.x = TRUE, all.y = TRUE) Saludos --