Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
324 views
in Technique[技术] by (71.8m points)

Plotly in R changes x-axis starting from 1970

I have a dataframe with timestamp column and one integer column with range 0-8. I'd like to plot a marker for every data point, but plotly shows me a plot with x-axis starting in 1970. When I convert integer column to factor, x-axis range is set correctly. Any idea, how to set marker color using integer column and get proper range for x-axis? Bad range:

library(plotly)
library(tidyverse)
library(lubridate)

set.seed(99)
tsRange = seq(ymd_hm("2021-01-01 00:00", tz = "CET"), ymd_hm("2021-01-08 23:59", tz = "CET"), by = "60 secs")
nRows <- 20
df <- tibble(
  ts = sample(tsRange, nRows),
  point = sample(1:8, nRows, replace = TRUE)
) %>% 
  mutate(point_fac = as.factor(point))
plot_ly(df, x = ~ts, y = "something", color = ~point) %>% add_markers()

good range

plot_ly(df, x = ~ts, y = "something", color = ~point_fac) %>% add_markers()

Regards Pawe?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...