View() is different

Hi! View() is not longer showing items in rectangular format (please see my pics). In the older version of Rstudio (1.3.9), I was able to see a vector of values as a column; now, it looks like it is giving the attributes of the vector instead (v. 1.4). The newer version is on my computer and I would like to know what to do so I can use View() as I used to -- using View(object) to view the object in a r x c format (or has that been permanently changed)?

This is how it looks in the new version. Thanks in advance!!

I think the behavior has been changed in the latest version to address the issue described here.

You could try coercing the vector to an object that supports a tabular view. Try View(as.data.frame(sex)).

Thank you! This works!!

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

If you have a query related to it or one of the replies, start a new topic and refer back with a link.