0
Good afternoon!
I would like to know what size capacity of a data frame in R, I have a case in which used the R Sidrar package connection direct to the IBGE API for data capture, I had the following return:
All others arguments are desconsidered when 'api' is informed
Error in get_sidra(api = "/t/3939/p/1990-2017/v/all/n6/all/c79/2670") :
Quantidade de valores solicitados: 155876 excedeu o limite: 100000
>
I would like to know if it is a package specific case, or if the size of a data frame is 100000 lines capacity.
The capacity of a dataframe is given by the available memory. This error may be due to an IBGE limit, it often happens that there are limits of data requests imposed by institutions.
– Rui Barradas