Rindrics / lucifer

ネ申エクセルと戦うためのRパッケージ
GNU General Public License v3.0
3 stars 0 forks source link

gather_cols()をdeprecatedにする #204

Open Rindrics opened 4 years ago

Rindrics commented 4 years ago

stockdbrで呼ばれているのでdeprecated()する

.Deprecated(pivot_longer, package=tidyr, msg,
            old = as.character(sys.call(sys.parent()))[1L])

ver1.0.9000で廃止予定

akimanabe commented 4 years ago

Deprecateして、代わりに pivot_cols でも新設しますか? むしろ、0.2.0.9000 ➡️ 0.3.0.9000 にして、gather_colsの中身を tidyr::gather から tidyr::pivot_longer に変えるだけじゃダメですかね。

gather_cols の中で必要な引数をちゃんと pivot 版に合致するように設定すれば rebel(cluster) の仕様は変更しないで済むし。

Rindrics commented 4 years ago

むしろ、0.2.0.9000 ➡️ 0.3.0.9000 にして、gather_colsの中身を tidyr::gather から tidyr::pivot_longer に変えるだけじゃダメですかね。

ありがとう、そうします!