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.
Rで複数の引数を持つ関数をプロットするにはどうすればよいですか.
次の関数があるとします。
fn1<-function(x,y){ sin(x+y) }
y=2 のときに関数 fn1 をプロットしたいのですが、plot(fn1,y=2) が機能しません。そのための正しいコマンドは何ですか?
ありがとう。
定義した function にすべての引数を適用するだけですfn1。たとえば、次のようになります。
fn1
plot(fn1(x=1:100, y=2))