This is my first post. Therefore, when I run this code in the Rstudio r command bar, it all becomes very slow, and it just started. Ive tried other applications and only from Rstudio. I initially had a sample size of 10001, but reduced it to 50 and the same error occurred. Just wondering if this is a problem with code or rstudio.
Here is the following code:
n <- 50
smpl <- newdata[sample(nrow(newdata), 50),]
plot(smpl$V37,smpl$V39,col="red", cex=.6)
The data itself is just the coordinates in a long armor, for example 150, -25. I tested this data without problems, so the data is not provided. I just wanted to find out if anyone else removed this issue before.
EDIT: Sorry, I forgot to mention that my version is 2.15.3, 64-bit Windows Vista Enterprise, 2.66 GHz quad-core, 4 GB of RAM. I know that this is actually not just code, just wondering if someone has removed one problem with rstudio, maybe my version of r is corrupted or something like that.
source
share