Visualisation with highcharter - Error with highcharter in R
up vote
2
down vote
favorite
I am trying to plot basic charts with library: highcharter but getting the error :
highchart()%>%
hc_add_series(pokemon, "scatter", hcaes(x = height, y = weight))
Warning: Error in mutate_impl: Column `x` is of unsupported type quoted call
Note:
I was tried as per the document :
https://www.datacamp.com/community/tutorials/data-visualization-highcharter-r
r r-highcharter
add a comment |
up vote
2
down vote
favorite
I am trying to plot basic charts with library: highcharter but getting the error :
highchart()%>%
hc_add_series(pokemon, "scatter", hcaes(x = height, y = weight))
Warning: Error in mutate_impl: Column `x` is of unsupported type quoted call
Note:
I was tried as per the document :
https://www.datacamp.com/community/tutorials/data-visualization-highcharter-r
r r-highcharter
can u check the which version of highcharter is using?
– sai saran
Nov 13 at 5:22
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I am trying to plot basic charts with library: highcharter but getting the error :
highchart()%>%
hc_add_series(pokemon, "scatter", hcaes(x = height, y = weight))
Warning: Error in mutate_impl: Column `x` is of unsupported type quoted call
Note:
I was tried as per the document :
https://www.datacamp.com/community/tutorials/data-visualization-highcharter-r
r r-highcharter
I am trying to plot basic charts with library: highcharter but getting the error :
highchart()%>%
hc_add_series(pokemon, "scatter", hcaes(x = height, y = weight))
Warning: Error in mutate_impl: Column `x` is of unsupported type quoted call
Note:
I was tried as per the document :
https://www.datacamp.com/community/tutorials/data-visualization-highcharter-r
r r-highcharter
r r-highcharter
asked Nov 13 at 5:20
Amelia
628
628
can u check the which version of highcharter is using?
– sai saran
Nov 13 at 5:22
add a comment |
can u check the which version of highcharter is using?
– sai saran
Nov 13 at 5:22
can u check the which version of highcharter is using?
– sai saran
Nov 13 at 5:22
can u check the which version of highcharter is using?
– sai saran
Nov 13 at 5:22
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
Same situation was faced in my r also to plot basic mtcars
data, problem with the old version of highcharter and install the new updated one with from github
.
library(highcharter)
packageVersion("highcharter")
[1] ‘0.6.0’
updated version is 0.6.0
to get the updated version :
library(devtools)
devtools::install_github("jbkunst/highcharter")
library(highcharter)
packageVersion("highcharter")
restart the r
and rstudio
and check the packageVersion("highcharter")
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
Same situation was faced in my r also to plot basic mtcars
data, problem with the old version of highcharter and install the new updated one with from github
.
library(highcharter)
packageVersion("highcharter")
[1] ‘0.6.0’
updated version is 0.6.0
to get the updated version :
library(devtools)
devtools::install_github("jbkunst/highcharter")
library(highcharter)
packageVersion("highcharter")
restart the r
and rstudio
and check the packageVersion("highcharter")
add a comment |
up vote
2
down vote
accepted
Same situation was faced in my r also to plot basic mtcars
data, problem with the old version of highcharter and install the new updated one with from github
.
library(highcharter)
packageVersion("highcharter")
[1] ‘0.6.0’
updated version is 0.6.0
to get the updated version :
library(devtools)
devtools::install_github("jbkunst/highcharter")
library(highcharter)
packageVersion("highcharter")
restart the r
and rstudio
and check the packageVersion("highcharter")
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
Same situation was faced in my r also to plot basic mtcars
data, problem with the old version of highcharter and install the new updated one with from github
.
library(highcharter)
packageVersion("highcharter")
[1] ‘0.6.0’
updated version is 0.6.0
to get the updated version :
library(devtools)
devtools::install_github("jbkunst/highcharter")
library(highcharter)
packageVersion("highcharter")
restart the r
and rstudio
and check the packageVersion("highcharter")
Same situation was faced in my r also to plot basic mtcars
data, problem with the old version of highcharter and install the new updated one with from github
.
library(highcharter)
packageVersion("highcharter")
[1] ‘0.6.0’
updated version is 0.6.0
to get the updated version :
library(devtools)
devtools::install_github("jbkunst/highcharter")
library(highcharter)
packageVersion("highcharter")
restart the r
and rstudio
and check the packageVersion("highcharter")
edited Nov 14 at 5:06
Amelia
628
628
answered Nov 13 at 5:26
sai saran
1,199123
1,199123
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53274292%2fvisualisation-with-highcharter-error-with-highcharter-in-r%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
can u check the which version of highcharter is using?
– sai saran
Nov 13 at 5:22