Создайте kable в R из определенных значений вектора - PullRequest
0 голосов
/ 26 апреля 2018

Итак, я пытаюсь создать kable в R из набора данных "mydata" на основе определенного набора значений, в данном случае выбросов, и я не могу найти правильный контекст:

# this pulls out the outliers from the RATIO boxplot data
RT_outliers = (boxplot(mydata$RATIO, plot=FALSE)$out)

#below is my best shot so far as to how to create a table that 
#contains just the rows that have the outlier values
kable(mydata$[mydata$RATIO==RT_outliers])

Есть идеи?

1 Ответ

0 голосов
/ 26 апреля 2018

доллар после mydata также является проблемой, вам нужно добавить кому, потому что вы фильтруете строки

# this pulls out the outliers from the RATIO boxplot data
RT_outliers = (boxplot(mydata$RATIO, plot=FALSE)$out)

#below is my best shot so far as to how to create a table that 
#contains just the rows that have the outlier values
kable(mydata[mydata$RATIO==RT_outliers,])
...