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.
関数があるとします
test <- function(s,t) { .. } 2 つの引数を必要とします。
単一の引数を取るようにするにはどうすればよいtest(t)ですtest(t,t)か。前もって感謝します。
test(t)
test(t,t)
引数のデフォルト値を設定するのが最も簡単ですが、missing関数内 (ifステートメント内) で関数を使用して、引数が関数に提供されたかどうかを確認し、それに基づいて別のことを行うこともできます。
missing
if