RStudio画图错误提示

**

RStudio画图错误

**

错误提示

x<-c(1,2,3)
y<-c(4,5,6)
plot(y,x)

Error in gzfile(file, "wb") :cannot open the connection
In addition: Warning message:
In gzfile(file, "wb") :
 cannot open compressed file'C:/Users/????/AppData/Local/Temp/RtmpCuJjwT/rs-graphics-304ed13f-1958-4eeb-930a-24d61ef9cef2/7c68cc44-8d16-47cd-a3ba-93c854098270.snapshot',probable reason 'Invalid argument'

因为用户名是中文,写入不了

以下是办法解决:

  1. 假定你的Windows用户名为“阿林”,在C:\Users文件夹里新建如下路径“\alin\AppData\Local\Temp”,形成这样一个完整路径“C:\Users\alin\AppData\Local\Temp”。
  2. 右击“计算机”,点“属性——高级——环境变量”,找到“阿林”的用户变量。
  3. 找到“TEMP”和“TMP”,将其都改成“C:\Users\alin\AppData\Local\Temp”,确定后退出。

你可能感兴趣的:(RStudio画图错误提示)