Koci Kocev
Koci Kocev

Reputation: 169

R View() function does not show data frame

I am using R (Version 3.1.2) with RStudio (Version 0.98.1091) on a Linux Ubuntu machine. I have a csv file loaded in variable:

rr  <- read.csv("/home/user/seconds.csv")

When I call View(rr) I expect to open a new tab and display the CSV data in the rr variable. However, it opens a new tab called rr and it displays the following message.

/content?title=rr&file=94af460bd6644d3aaac734d585046c4f.htm not found

Upvotes: 2

Views: 26775

Answers (3)

Siriusthomasmathew
Siriusthomasmathew

Reputation: 1

Go to packages in R and install veiwpoly package then view function will start working

Upvotes: 0

Derek Owens-Oas
Derek Owens-Oas

Reputation: 11

I am on a x86_64-w64-mingw32 system with R version 3.4.1, but I want to share a simple solution to get View working again in my case.

Following the step 4 of advice from Tian on Rstudio support (https://support.rstudio.com/hc/en-us/community/posts/115007743908-The-Rstudio-view-not-work-just-blank-), I entered:

install.packages("dplyr", dependencies = TRUE)

Now it works.

Upvotes: 1

Pranay Aryal
Pranay Aryal

Reputation: 5396

The View function is from package 'utils' which is not supported by the version of R you are using.

Upvotes: 4

Related Questions