-3
A
回答
2
嗯,由於問題的不完整性,我缺少一些東西,但ggplot和geom_path()在處理負數據時都沒有問題。
例如:
library(ggplot2)
library(plyr)
myear <- ddply(movies, .(year), colwise(mean, .(length, rating)))
myear$lengthc <- myear$length - mean(myear$length)
myear$ratingc <- myear$rating - mean(myear$rating)
summary(myear)
p <- ggplot(myear, aes(lengthc, ratingc))
p + geom_path()
我只是說從geom_path()例如爲軸心的變量(所以它們都具有正值和負值),情節看起來如預期。
相關問題
- 1. 在R中X軸的數值不被接受爲負值:ggplot
- 2. openCV bicubic imresize創建負值
- 3. 創建具有GGPLOT
- 4. 創建一個計算正負ggplot的geom直方圖
- 5. ggplot圖表中,x =日期,Y =值,值
- 6. 函數爲ggplot對象創建ggplot
- 7. 試圖創建負值nodejs(npm)長值
- 8. 如何使用數字x值在ggplot中創建盒子/小提琴情節?
- 9. ggplot:在線圖中的特定點創建X符號
- 10. 使用ggplot創建barplot
- 11. R:創建ggvis代替ggplot
- 12. ggplot創建相關圖
- 13. ggplot anotate當x值爲字符時
- 14. ggplot去除冗餘x軸值
- 15. unsigned int - 移位和oring創建負值
- 16. 如何創建負值的柱狀圖?
- 17. ggplot x軸麻煩
- 18. >時失敗值負
- 19. 創建OS X
- 20. 創建與每個x軸值
- 21. ggplot不創建一個傳說,當變量數值
- 22. ggplot x軸順序天
- 23. ggplot堆積條形圖的x值和沒有y /填充值
- 24. 三角函數:sin(x)得到負值
- 25. D3 v4條形圖X軸負值
- 26. CGPoint的x或y值爲負0
- 27. 使用ggplot創建經濟圖表
- 28. 創建/檢查後放大ggplot
- 29. 使用ggplot創建浮動餅圖
- 30. 在R中使用ggplot創建地毯
看看[tag:ggplot2]標籤下的一些其他問題,並相應地更新您的問題。否則,你會不幸地吸引downvotes和問題*將*關閉。該網站的[** about **](http://stackoverflow.com/about)和[** FAQ **](http://stackoverflow.com/faq)部分將幫助您充分利用網站。 –
建議關閉,因爲沒有提供數據,並且問題缺乏預期結果的清晰度。 –