R 常見error及其可能原因 筆記

2021-09-22 08:11:17 字數 1362 閱讀 8761

更新於 2019.05.11

以下全部是自己實際過程中遇見過的,現收集起來,方便學習使用,大家有遇到其他的,我也可以收集並更新進這裡~

ps: 就算你看懂報錯的 error 資訊,但是也可能找不到具體哪一步錯了,所以勿噴「error資訊已經說明了blabla之類的話」

q: ggplot2_error: geom_point requires the following missing aesthetics: y

a: stat = 「indentity」 or 「density」 等

q: error: discrete value supplied to continuous scale

a: 可能是 x或y 軸設定成 discrete,而 data卻是 continuous,反之如此。比如 設定了 scale_x_continuous(blablabla),但是x軸的data卻是 c(「val1」,「val2」,blabal2),這就造成了衝突,所以error

xlim ylim 與 coord_cartesian可能圖能同樣的效果,但是是不一樣的。 coord_cartesian是區域性放大,不改變資料集,xlim ylim是會改變資料集,相當於filter 資料集。

dat[datx > 5, c(1,9)] # 只選1,9 列

dat[datx > 5, 1:9] # 選1到9 列,這兩個是不一樣的

tidyverse包的tibble雖然具有data.frame的特性,但是不完全等於data.frame:

這裡就是說識別不了model.data的那些列。因為model.data是tidyverse包read_delim讀入的資料集,嘗試了下,加個 as.data.frame()就搞定了。

mysql client常見error總結

mysql 客戶端連線伺服器,客戶端報對應的錯誤號總結 1.error 104 mysql longxibendi dba u abcd00.longxibendi perror 104 os error code 104 connection reset by peer 這個是由於server端 ...

mysql client常見error總結

mysql 客戶端連線伺服器,客戶端報對應的錯誤號總結 1.error 104 mysql longxibendi dba u abcd00.longxibendi perror 104 os error code 104 connection reset by peer 這個是由於server端 ...

javaMAIL 常見ERROR總結

uable to log on 郵箱開啟了ssl授權碼,要用授權密碼登陸而不是使用郵箱密碼 connecting to host pop.163.com port 110,isssl false 情況1 協議錯了,若當前是ssl協議,改為普通協議埠。若當前是普通協議埠,改為ssl協議埠。情況2 協議...