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.
私はSPLOMの大ファンです
カテゴリ データの箱ひげ図をサポートできる SPLOM パッケージを知っている人はいますか? 「性別」のような列の散布図があると、本当に奇妙に見えます
GGally多くの機能をサポートするパッケージを使用できます。
GGally
require(GGally) data(tips) tips.sample <- tips[ ,c("total_bill", "tip", "day")] ggpairs(tips.sample, upper = list(continuous = "points", combo = "box"), lower = list(continuous = "points", combo = "box"))