Итак, я пытаюсь создать 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])
Есть идеи?