Tried a few basic things, some of them did not work:
1. x = rnorm(1000)
2. plot(density(x)) --> not work
3. stem(x) --> not work
4. summary(x) --> works
For R data handling, I always use data.table for its efficiency and power.
1. library(data.table)
2. x = data.table(x=rnorm(1000)) --> not work
> x = data.table(x=rnorm(1000))
ERROR: Exception calling Calloccolwrapper : Unimplemented GNU R API function 'DUPLICATE_ATTRIB'
1. x = rnorm(1000) 2. plot(density(x)) --> not work 3. stem(x) --> not work 4. summary(x) --> works
For R data handling, I always use data.table for its efficiency and power.
1. library(data.table) 2. x = data.table(x=rnorm(1000)) --> not work > x = data.table(x=rnorm(1000)) ERROR: Exception calling Calloccolwrapper : Unimplemented GNU R API function 'DUPLICATE_ATTRIB'