我学习R和使用aprefunded数据库“牙齿生长“我学习使用Tidyverse和我有这个块
data("ToothGrowth")
View(ToothGrowt)
#will add name to the new data set and apply a filter filtered_tg <- filter (ToothGrowth,dose==0.5)
View(filtered_tg)
并在过滤器上获得该误差过滤器中的误差(牙齿生长,剂量== 0.5):未找到对象“dose”,但数据库中是否存在类似对象,有何想法?)视频指导者运行良好[指导示例]([https://i.stack.imgur.com/Wcode来自指导者](https://i.stack.imgur.com/hNfiU.png)RZD6.png)
我试图让过滤器工作,并获得这个result from the instructor after apply filter and view function
1条答案
按热度按时间r6hnlfcb1#
当我刚刚指定filter()时访问的库是stats库[1],因为您希望从dplyr访问过滤器,所以可以按照下面的代码块.
filtered_tg <- dplyr::filter(ToothGrowth,dose==0.5)
指定它。参考文献:[1]:https://i.stack.imgur.com/bCcq1.png
希望这能解决你的疑问,快乐编码!!!问候