environment expando (blue arrow) still missing

Hi,

I am very new on R but something bugs me. I imported a dataset from stata like that:

df<-read_dta(paste(path,"/ELS_2012.dta", sep=""), encoding=NULL)

Then realized that the dataframe was too big so did that:
df_small<-subset(df,,select=c(STU_ID, F3ATTAINMENT,F3D21, F3A01C,F3A01D, F3A01E ))

to select a few useful var.

While the df data frame has the expando (blue arrow) on the global environment the sub-dataframe df_small does not. Nothing bad but annoying.

I saw a thread about where it said that the problem has been fixed with a new update but it does not seem to be working for me (my version is 1.2.1335)

Thanks

Have you tried with the preview release version?
https://www.rstudio.com/products/rstudio/download/preview/

1 Like

It works. I am still in beta mode on R :slight_smile:

thanks

If your question's been answered (even by you!), would you mind choosing a solution? It helps other people see which questions still need help, or find solutions if they have similar problems. Here’s how to do it:

Ok done it. thanks :slight_smile:

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.