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.
長さ 5 の移動中央値を計算するにはどうすればよいですか? 関数を試しましたsmoothが、長さ 3 の移動中央値しか実行しません。
smooth
これを試して。
library(zoo) x <- 1:100 rollmedian(x,5)