修复功能在R中不起作用

时间:2014-07-05 15:37:29

标签: r

我在使用R中的修复功能时遇到了一些困难。我在应用修复之前使用以下代码加载了数据集

college = read.csv("College.csv")
fix("College.csv")

但是,不是一个窗口弹出数据框来查看,而是取而代之: enter image description here

请问有谁知道如何解决这个问题?

由于

1 个答案:

答案 0 :(得分:2)

您需要运行:

fix(college)

而不是字符串。

帮助

  

用法

fix(x, ...) Arguments
x  the name of an R object, as a name or a character string.
...    arguments to pass to editor: see edit.

因此,您也可以使用fix("college")