I normally use R Studio when working with R. I found there is a problem when double clicking the variable name in the environment view, as the window which is displayed only shows the first 100 rows. Double clicking the variable name is the same as entering the following command:
View(data)
Instead, use the following command:
utils::View(data)
These examples assume the name "data" is the one that you want to view.
No comments:
Post a Comment