Hi, I tried to estimated the density function for this variable. The variable has 11835 observations. When I run the following code
dBeligium <- density(Europeanstockmarketdata$BBELGIUM, na.rm=TRUE)
I receive : unused argument (na.rm = TRUE)
If I remover the na.rm from the code as: dBeligium <- density(Europeanstockmarketdata$BBELGIUM)
I receive: Error: C stack usage 15928272 is too close to the limit.
Is there anything wrong with my first code ?