【Rトラブルシュート】csvで書き出すとき遭遇したトラブル 更新日:2023年5月11日 公開日:2022年7月28日 R あるコードをcsvで書き出し、 # CSV で書き出し write.csv(Data, "file_name.csv", row.names = FALSE) それを別アプリで開こうとすると、下記エラーメッセージが出現し […] 続きを読む
【Rトラブルシュート】the condition has length > 1 and only the first element will be used 更新日:2023年5月11日 公開日:2022年7月24日 R R で if 構文を使うときに時々遭遇する下記エラーメッセージ。 the condition has length > 1 and only the first element will be used 例えば、下 […] 続きを読む
【Rトラブルシュート】openBinaryFile: permission denied (Permission denied) 更新日:2023年5月11日 公開日:2022年7月12日 R 前回、"openBinaryFile: invalid argument" の問題は絶対パスを指定することで解消したけど、 次に出てきたエラーメッセージは、 openBinaryFile: permission deni […] 続きを読む
【トラブルシュート】package or namespace load failed for ‘tidyverse’ in loadNamespace と Error in app$vspace(new_style$`margin-top` %||% 0) : attempt to apply non-function 更新日:2023年5月11日 公開日:2022年7月6日 R ある日、Rを使っていて、突然 "tidyverse" が使えなくなった。 Error: package or namespace load failed for ‘tidyverse’ in loadNamespace […] 続きを読む
【Rトラブルシュート】 attempt to set ‘colnames’ on an object with less than two dimensions 更新日:2023年5月11日 公開日:2022年6月30日 R 列名を変更しようとして colnames() を使った時に下記エラーメッセージ。 attempt to set 'colnames' on an object with less than two dimensions […] 続きを読む
【Rトラブルシュート】Error in seq_len(n) : argument must be coercible to non-negative integer 更新日:2023年5月11日 公開日:2022年6月22日 R 今までサクサク動いていたコードで、カラーコードだけ変更したつもりでRUNしたら、最後にグラフを ggsave で保存する時に下記メッセージ↓。 Error in seq_len(n) : argument must be […] 続きを読む
【Rトラブルシュート】’list’ object cannot be coerced to type ‘double’ 更新日:2023年5月11日 公開日:2022年6月10日 R 3行目をcolnamesにする前に "for" を使って名前を順に変更していくことにした。 # 3行目のIDを変更 for(i in 3:6){ Dat1[3,i] <- paste("M_NFT_",c(i-2) […] 続きを読む
【Rトラブルシュート】openBinaryFile: invalid argument (Invalid argument) 更新日:2023年5月11日 公開日:2022年6月2日 R RMarkdown を word で出力しようとした時に出たエラー。 openBinaryFile: invalid argument (Invalid argument) で、word styleの reference […] 続きを読む
【Rトラブルシュート】Error in file(file, “rt”) : cannot open the connection 更新日:2023年5月11日 公開日:2022年4月15日 R Rでcsvファイルを読み込もうとしたら、下記エラーメッセージ↓。 Error in file(file, "rt") : cannot open the connection ちょっと困って、下記を参考にして direc […] 続きを読む
【Rトラブルシュート】Error: attempt to use zero-length variable name 公開日:2022年3月26日 R R markdown のチャンクに ```{r fig.height=10 fig.width=6} コード色々 ``` と書いて、「Ctrl + Enter」で実行しようとしたら下記エラーが出た。 Error: att […] 続きを読む
【Rトラブルシュート】Error in library(ggsignif) : there is no package called ‘ggsignif’ 公開日:2022年3月6日 R パッケージ "ggsignif" をインストールしようとして、 install.packages(ggsignif) と入れて実行したら下記エラーメッセージ↓ Error in library(ggsignif) : t […] 続きを読む
【Rトラブルシュート】invalid factor level, NA generated 更新日:2021年11月14日 公開日:2021年11月10日 R あるデータフレームに論理型(factor)の列を追加しようとして、下記のように作成した。 Data <- %>% mutate(Group = factor(NA, levels = c("LBD-L […] 続きを読む
【Rトラブルシュート】number of items to replace is not a multiple of replacement length 更新日:2021年11月14日 公開日:2021年11月6日 R ある病理のスコアで、Brainstem (BS) が NA の項目があったので、 "Midbrain(MB) と Pons(Pons) と Medulla (Med) のどこかで 1 以上のスコアがあったら、BS = 1 […] 続きを読む
【Rトラブルシュート】longer object length is not a multiple of shorter object length 更新日:2021年11月14日 公開日:2021年10月21日 R "longer object length is not a multiple of shorter object length" のエラーメッセージが出たら、 それは、指示したベクター同士の長さがあっていないという事。 […] 続きを読む
【Rトラブルシュート】Run All Chunks Above が使えなくなった件 更新日:2021年11月14日 公開日:2021年10月9日 R ある日、今までサクサク動いていた "Run All Chunks Above" ボタンが、全く反応しなくなりました。 Ctrl+Alt+Shift+P を押してもダメだし、 右上の、"Run" タブから "Run All […] 続きを読む
【Rトラブルシュート】Error in match.names(clabs, names(xi)) : names do not match previous names 更新日:2021年11月14日 公開日:2021年9月29日 R R Markdown で Knit しようとしたら、下記 warning が出て止まった。 Error in match.names(clabs, names(xi)) : names do not match prev […] 続きを読む
【Rトラブルシュート】”R code execution error” 更新日:2021年11月14日 公開日:2021年9月5日 R ある時、R でコードを打つ度に、"R code execution error" という warning sign に遭遇するようになりました。 普通に仕事は進められるけど、警告の度に作業がストップされるので、ちょっと […] 続きを読む
【Rトラブルシュート】unused argument 更新日:2021年11月14日 公開日:2021年8月28日 R この間まで普通に動いていた下記コードが、突然エラー表示に。 Data_D <- readxl::read_xlsx("sample", guess_max=40000, range="A1:AK755") %> […] 続きを読む
【Rトラブルシュート】glm 関数でのエラー:Error in glm.fit(x = c(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, : NA/NaN/Inf in ‘y’ 更新日:2021年11月14日 公開日:2021年7月28日 R 先日、多重ロジスティック回帰分析を行っていて、下記の様に入力していたら、 model <- glm(LATE ~ Age + Sex + DLBType + ADNC, data = Data_L) 下記のエラーが […] 続きを読む
【R Markdown】レンダリングできないとき(openBinaryFile: invalid argument) 更新日:2022年4月23日 公開日:2021年6月22日 R 先日、R Markdown を knit しようとしたら、下記メッセージがでてレンダリングできなかった。 pandoc.exe openbinaryfile invalid argument (invalid argum […] 続きを読む
【Rトラブルシュート】caret がインストールできなかった件 更新日:2021年11月14日 公開日:2021年6月1日 R caret を install.pakages ("caret") でインストールしようとしたら、 Error in install.packages : object 'caret' not found となってインス […] 続きを読む
【Rトラブルシュート】’rlang’ does not have a namespace 更新日:2021年11月14日 公開日:2021年4月30日 R ある日突然、今までできていた パッケージのインストールができなくなることが時々ある。 今回は、'tidyverse' を読み込もうとしたら、下記メッセージが出てきて止まった。 Error: package or name […] 続きを読む
【Rトラブルシュート】パッケージをインストールできないとき 更新日:2021年11月14日 公開日:2021年3月22日 R Rの環境を変えて、パッケージを再インストールしようとしたら、下記エラーが表示された。 「代わりに新しいライブラリを構築しますか?」 的な事を効かれたので、「YES」としたのに、また下記メッセージ。 「結局ダメってことじゃ […] 続きを読む