Hi,
I am experiencing problems when I try to make a ternary scatter plot and color by a contineous variable. The ternary plot appears to be placed on top of a binary plot in the background. Color of a factor variable is working fine.
Here is some code that reproduces the problem
library(plotly)
mtcars %>%
plot_ly(
a = ~mpg,
b = ~cyl,
c = ~disp,
text = ~gear,
color = ~wt ,
type = 'scatterternary',
mode = 'markers',
marker = list(
symbol ='circle',
opacity = 0.6,
size = 15
))