gpt4 book ai didi

R Shiny Plotly 动画如何在加载时自动执行

转载 作者:行者123 更新时间:2023-12-03 04:52:37 25 4
gpt4 key购买 nike

简而言之:当完全加载到 Shiny Web 应用程序的 UI.R 中时,如何运行 Plotly 动画?

我正在尝试使用 Plot.ly's cumulative animations 将动画添加到我的 R Shiny Web 应用程序中。我想在 UI 中加载时执行动画绘图,但找不到自动运行绘图的方法。

下面是一个 Shiny 的 Web 应用程序的工作示例,其中包括一个 Plot.ly 累积动画,该动画在单击“播放”按钮时运行,并且应该自动运行。

非常感谢您的帮助!

UI.R

pageWithSidebar(
sidebarPanel(
'some controls'
),
mainPanel(
plotlyOutput("frontPage", width = "100%")
)
)

服务器.R

library(shiny)
library(dplyr)

function(input, output, session) {
accumulate_by <- function(dat, var) {
var <- lazyeval::f_eval(var, dat)
lvls <- plotly:::getLevels(var)
dats <- lapply(seq_along(lvls), function(x) {
cbind(dat[var %in% lvls[seq(1, x)], ], frame = lvls[[x]])
})
dplyr::bind_rows(dats)
}

d <- txhousing %>%
filter(year > 2005, city %in% c("Abilene", "Bay Area")) %>%
accumulate_by(~date)

observe({
output$frontPage <- renderPlotly({
p <- d %>%
plot_ly(
x = ~date,
y = ~median,
split = ~city,
frame = ~frame,
type = 'scatter',
mode = 'lines',
line = list(simplyfy = F)
) %>%
layout(
xaxis = list(
title = "Date",
zeroline = F
),
yaxis = list(
title = "Median",
zeroline = F
)
) %>%
animation_opts(
frame = 10,
transition = 5,
redraw = FALSE
) %>%
animation_slider(
hide = T
) %>%
animation_button(
x = 1, xanchor = "right", y = 0, yanchor = "bottom"
)
})
})
}

最佳答案

这真是一个挑战!这可能不是唯一的方法。尽管晚了几年,但很难找到这些信息。我正在做一个类似的项目,所以回答这个问题对我很有用。

一些注意事项:

  • 如果仅用一帧渲染plot_ly,按钮和 slider 将被抑制。
  • 如果您单独使用 add_traces,以后使用 animate 会更容易。
  • ids(必须是唯一的且有特色的)有助于动画跟踪各个点。
  • 您可以使用reactiveTimer()来触发事件,无需用户干预。
  • 使用代理是更新绘图的最佳方式。
  • 为plotlyProxyInvoke获取正确的嵌套列表结构是很困难的。
  • 此示例实际上可能不需要动画,因为数据点没有移动。
  • plotly 引用很难。
  • 您必须提供每帧的帧和持续时间值。
library(shiny)
library(dplyr)
library(plotly)

ui <- fluidPage(
# actionButton("go", "Advance"),
plotlyOutput("frontPage", width = "100%")
)

server <- function(input, output, session) {

accumulate_by <- function(dat, var) {
var <- lazyeval::f_eval(var, dat)
lvls <- plotly:::getLevels(var)
dats <- lapply(seq_along(lvls), function(x) {
cbind(dat[var %in% lvls[seq(1, x)], ], frame = lvls[[x]])
})
dplyr::bind_rows(dats)
}

cities <- c("Abilene", "Bay Area")
colors <- c(I("blue"), I("orange"))

d <- txhousing %>%
filter(year > 2005, city %in% cities) %>%
accumulate_by(~date)

frames <- unique(d$frame)
speed = 50

r <- reactiveValues(
i = 1
)

output$frontPage <- renderPlotly({
isolate({
# plot only one frame to avoid button and slider
cat("first frame", frames[r$i], "\n")
p <- plot_ly()
for (i in seq_along(cities)){
temp <- d %>%
filter(frame==frames[r$i]) %>%
filter(city==cities[i])
p <- p %>%
add_trace(
x = temp$date,
y = temp$median,
ids = as.character(temp$date),
name = cities[i],
frame = temp$frame,
type = 'scatter',
mode = 'lines',
line = list(color=colors[i], simplify=FALSE)
)
}
p <- p %>%
layout(
xaxis = list(
range = range(frames),
title = "Date",
zeroline = F
),
yaxis = list(
range = range(d$median),
title = "Median",
zeroline = F
)
) %>%
animation_opts(
frame = speed,
transition = speed,
redraw = FALSE
)
p # return plot_ly
}) # isolate
}) # renderPlotly

proxy <- plotlyProxy("frontPage", session=session, deferUntilFlush=FALSE)

# https://shiny.rstudio.com/reference/shiny/0.14/reactiveTimer.html
autoInvalidate <- reactiveTimer(speed)

observe({
autoInvalidate()
})

observeEvent(autoInvalidate(), {
req(r$i<length(frames))
r$i <- r$i + 1 # next frame
cat("add frame", frames[r$i], "\n")
f <- vector("list", length(cities))
for (i in seq_along(cities)){
temp <- d %>%
filter(frame==frames[r$i]) %>%
filter(city==cities[i])
f[[i]] <- list(
x = temp$date,
y = temp$median,
ids = as.character(temp$date),
frame = temp$frame
)
}
plotlyProxyInvoke(proxy, "animate",
# frameOrGroupNameOrFrameList
list(
data = f,
traces = as.list(as.integer(seq_along(f)-1)),
layout = list()
),
# animationAttributes
list(
frame=as.list(rep(list(duration=speed), length(f))),
transition=as.list(rep(list(duration=speed), length(f)))
)
)# plotlyProxyInvoke
}) # observeEvent

}

shinyApp(ui, server)

关于R Shiny Plotly 动画如何在加载时自动执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45507711/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com