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.
シーケンスの結果を表示したいとしましょう:
plot(runif(10,0,1), type="o")
接続された線ですべての要素を表示する方法で、pch2番目、3番目、またはN番目の要素ごとにのみ割り当てられた対応するアイコン(円/ダイヤモンド/など)をプロットしますか?
pch
フィルター処理された要素を持つ 2 つのシーケンスを作成し、別のものとして表示する必要がありますline()か? それを行うための少しエレガントな方法はありませんか?
line()
前もって感謝します!
私があなたの質問を正しく理解していれば、探しているシーケンスにpch引数を追加することができます: 例:plot
plot
set.seed(1) # I've used 'type="b"' just for clarity plot(runif(10, 0, 1), type="b", pch=rep(c(1, 2, 3), length.out=10))
これを提供します: