gpt4 book ai didi

r - 如何使用管道工在网络上显示/发送 r plotly plots?

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

我有一个 plotly plot,我想在其他 UI 上显示 plot,例如有角度的,使用 R Plumber。

最佳答案

这是你如何做的:

# API for experimenting with html widgets

library(plumber)
library(ggplot2)
library(plotly)

#* @apiTitle HTML widgets API

#* Return interactive plot using plotly
#* @serializer htmlwidget
#* @get /plotly
function() {
p <- ggplot(data = diamonds,
aes(x = cut, fill = clarity)) +
geom_bar(position = "dodge")

ggplotly(p)
}

希望这对您有所帮助。

来源 - https://github.com/blairj09/plumber-playground/blob/master/experiments/htmlwidgets-exp/plumber.R

关于r - 如何使用管道工在网络上显示/发送 r plotly plots?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56165795/

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