Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Rの基礎2_変数と関数.pdf

xjorv
April 22, 2021

 Rの基礎2_変数と関数.pdf

xjorv

April 22, 2021
Tweet

More Decks by xjorv

Other Decks in Education

Transcript

  1. 変数の扱い方 • 変数は演算に利用できる • 変数には型がある Xに1を代入すると、 • X + 10は11になり、演算できる

    • Xの型はNumericになる Yに“dog”を代入すると、 • Yの型はCharacterになる 1. class(◦◦)で◦◦の型を知ることができる 2. 変数の型は代入されたものによって勝手に決まる(型推論)