Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
bwplot{lattice} を作成していますが、外れ値を表示したくありません。コード例は次のとおりです。
m <- mtcars m$gear <- factor(m$gear) m$vs <- factor(m$vs) m$am <- factor(m$am) bwplot(drat ~ gear | am + vs, data = m)
次のように設定するだけdo.out=FALSEです:
do.out=FALSE
bwplot(drat ~ gear | am + vs, data = m, do.out = FALSE)
プロのヒント:格子プロット関数でよくあることですが、その引数は、 already-way-too-long-to-be-readable ではなく、?panel.bwplot(それを渡す関数) に文書化されています。bwplot()?bwplot
?panel.bwplot
bwplot()
?bwplot