当我使用来自' R for Data Science'
的代码教程时,RStudio一直崩溃library(tidyverse)
library(nycflights13)
filter(flights, month == 1, day == 1).
如果有人知道如何解决这个问题,我将不胜感激。
当我从终端通过anaconda-navigator运行RStudio时,收到以下错误消息(主目录编辑为〜隐私):
~/.anaconda/navigator/scripts/rstudio.sh: line 3: 19137 Segmentation fault
~/anaconda3/bin/rstudio > ~/.anaconda/navigator/scripts/rstudio-out-1.txt
~/.anaconda/navigator/scripts/rstudio-err-1.txt
我是R的新手,但在python中有一些背景,所以我尝试了以下内容:
RStudio提供并阅读航班'数据框没有问题。
将过滤器分配给对象(jan1 <- filter(flights, month == 1, day == 1)
)可以正常工作,但调用对象jan1
会再次崩溃RStudio。
仅按month
或day
进行过滤不会造成任何问题。
我可以使用终端上的R解释器毫无问题地执行此任务。
我正在使用在Linux Mint上使用conda 4.4.11安装的RStudio v1.1.383 - Linux版本4.4.0-92-generic(buildd @ lcy01-17)(gcc版本5.4.0 20160609(Ubuntu 5.4.0) -6ubuntu1〜16.04.4)。