如何在ggplotly中更改宽度和高度?
如果我们使用 ggplot,它可以使用 ggsave
ggsave(filename = "foo300.png", ggplot(mtcars, aes(x=wt, y=mpg)) +
geom_point(size=2, shape=23) + theme_bw(base_size = 10),
width = 5, height = 4, dpi = 300, units = "in", device='png')
我在用
htmltools::browsable(gg[[i]])
htmltools::save_html(gg[[i]],path)
或者
htmlwidgets::saveWidget(print(gg[[i]]), path)
打印图形并保存HTML,但图形太小,有些单词重叠,但我想要一个大字体,所以我希望改变图形的大小。
我知道可以用它来改变宽度和高度的plolty。
library(plotly)
m <- list(
l = 50,
r = 50,
b = 100,
t = 100,
pad = 4
)
p <- plot_ly(x = seq(0, 8), y = seq(0, 8)) %>%
layout(autosize = F, width = 500, height = 500, margin = m)
这是我的示例数据集。
d1 <-
data.frame(col_one = c(1, 2, 3, 3),
col_two = c("aa", "bb", "aa", "bb"))
d2 <-
data.frame(col_one = c(1, 1, 1, 6),
col_two = c("bb", "aa", "aa", "bb"))
d3 <-
data.frame(col_one = c(7, 1, 1, 4),
col_two = c("cc", "aa", "bb", "bb"))
my.list <- list(d1, d2, d3)
f <- function(table) {
table <- mapply(function(data, count) {
sql <-
sqldf(
paste0(
"select *,count(col_one) as count from data where col_one = ",
count,
" group by col_one,col_two"
)
)
}, my.list, 1,
SIMPLIFY = FALSE)
print(table)
return (table)
}
f(table = my.list)
f2 <- function(table) {
num <- length(table)
chart <- vector(num, mode = "list")
plotly <- vector(num, mode = "list")
for (i in 1:length(table)) {
chart[[i]] <- ggplot(data = table[[i]],
aes(x = col_two,
y = count,
fill = col_two)) +
geom_bar(stat = "identity", width = 0.3)
#print(chart[[2]])
plotly[[i]] <- ggplotly(chart[[i]])
}
return(plotly)
}
f2(f(table = my.list))
save <- function (gg) {
num <- length(gg)
print_gg <- vector(num, mode = "list")
dir <- "~/test/aa"
for (i in 1:length(gg)) {
path <- paste0(dir, i)
htmltools::browsable(gg[[i]])
htmltools::save_html(gg[[i]],path)
#htmlwidgets::saveWidget(print(gg[[i]]), path)
}
}
save(f2(f(table = my.list)))
我也搜索了这段代码,但我只是想改变宽度和高度。我必须先创建小部件吗?有没有简单的方法来改变宽度和高度?
htmlwidgets::createWidget(
"sigma",
x,
width = width,
height = height,
sizingPolicy = htmlwidgets::sizingPolicy(
viewer.padding = 0,
viewer.paneHeight = 500,
browser.fill = TRUE
)
)
如果我在图表中将 ggplot 更改为 ggplotly,我应该在哪里添加宽度或高度?有没有简单的方法来改变宽度和高度?