Stat2Data包中包含许多示例数据集。安装它或使用库函数调用它时我没有错误。但是,它不允许我使用这些对象。
任何熟悉这个包的人都知道我能做些什么吗?这是我使用的代码:
install.packages("Stat2Data")
library(Stat2Data)
# Attempt 1
MedGPA_ds <- ggplot(MedGPA, aes(x = GPA, y = Acceptance))
# Attempt 2
MedGPA_ds <- ggplot(Stat2Data::MedGPA, aes(x = GPA, y = Acceptance))
答案 0 :(得分:0)
您只错过了一步,即使用data()
函数调用Stat2Data包中包含的特定数据集(MedGPA)。
尝试以下操作:
library(Stat2Data)
data(MedGPA)
head(MedGPA)
Accept Acceptance Sex BCPM GPA VR PS WS BS MCAT Apps
1 D 0 F 3.59 3.62 11 9 9 9 38 5
2 A 1 M 3.75 3.84 12 13 8 12 45 3
3 A 1 F 3.24 3.23 9 10 5 9 33 19
4 A 1 F 3.74 3.69 12 11 7 10 40 5
5 A 1 F 3.53 3.38 9 11 4 11 35 11
6 A 1 M 3.59 3.72 10 9 7 10 36 5
编码愉快!