我在使用R中的修复功能时遇到了一些困难。我在应用修复之前使用以下代码加载了数据集
college = read.csv("College.csv")
fix("College.csv")
但是,不是一个窗口弹出数据框来查看,而是取而代之:
请问有谁知道如何解决这个问题?
由于
答案 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")
。