0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

R: Circularパッケージ、データの単位変換

Posted at

Rのcircularパッケージで角度データを用いて、データの単位を変えたい。
例えば、radからdegである。

結論から言うと、conversion.circularを用いる(p.30, https://cran.r-project.org/web/packages/circular/circular.pdf)。

今、

data <- read.table("data_in_rad.txt")
datac <- circular(data, units = "rad")

とデータを読み込んでいるとする。
これをdegreeに変換したい時は、

conversion.circular(datac, units="degrees")

とすれば良い。細かなオプションはあるが、これはこの記事の範疇ではないので割愛する。オプションに関しては、上記のリンク先に記載されている。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?