2017-03-17 39 views
2

我試圖開始爲R使用plotly,但我遇到有關用戶名錯誤的問題。當我嘗試執行以下代碼...有關用戶名使用plotly r軟件包離線時的錯誤消息

test=ggplot(diamonds,aes(x=diamonds$carat,y=diamonds$price))+geom_point() 
test2=plotly(test) 
plotly(test) 

...我收到錯誤消息:

Storing 'username' as the environment variable 'plotly_username' 
Error in Sys.setenv(plotly_username = username) : 
    wrong length for argument 

我想plotly的[R包得可使用不通過htmlwidgets用戶名。據我所知,我正在使用最新版本的plotly,ggplot和htmlwidgets。我究竟做錯了什麼?

回答

2

你必須使用ggplotly()

所以,

test <- ggplot(diamonds,aes(x = carat,y = price))+ geom_point()

ggplotly(test)

+0

哈哈,所以我結束了曾經問計算器上最愚蠢的問題。感謝您的快速幫助。這工作完美。 – user3786999

+0

此外,你可以使用plotly,但你必須做plot_ly()。 –