gpt4 book ai didi

css - 如何减少 Shiny 中的白边

转载 作者:行者123 更新时间:2023-11-28 08:58:47 26 4
gpt4 key购买 nike

我在 Shiny 中的绘图输出有问题。使用标准 ggplots 我有正确的输出,意味着没有额外的白色边距,但是当我使用“ggmap”包(输出也是 ggplot 类型)时出现白色边距

(忽略波兰语,不重要)!例子: Example image

代码:ui.R

    shinyUI(fluidPage(
fluidRow(class="row2",
tags$head(
tags$style("body {background-color: #94BEE8; height: 600px}")
),
column(
h3("Filtry"),
dateInput("date", label=h5("Data"), value = "2014-09-07", min = "2014-09-01", max="2014-09-14"),
sliderInput("godz", label=h5("Godzina"), min = 0, max = 23, value = 15, animate= TRUE),
textInput("text1", label=h5("Adres I"), value="Piotrkowska 30, Lodz"),
textInput("text2", label=h5("Adres II"), value = "Uniwersytecka 5, Lodz"),
numericInput("r", label=h5("Promień [w km]"), value = 1, min = 0.1, max = 100),
sliderInput("zoom", label="", min =1, max = 21, value = 13),
submitButton(text="Wprowadź dane"),
width = 2),
column(5,
div(plotOutput("mapa", width = "100%")
, style = "height: 300px; background-color: #94BEE8;")
),
column(5,
htmlOutput("tabela")
))
))

server.R的一部分

 # Plotting
g <- p+
geom_point(data = data, aes(x = LONGITUDE, y = LATITUDE, size = LICZBA.NUMEROW), col = "yellow")+
geom_point(data= data, aes(x=LONGITUDE, y=LATITUDE, size = (0.625)*LICZBA.NUMEROW), col ="black", alpha = 0.4)+
geom_point(data=adres1, aes(x=lon, y=lat), size=15, col = "blue", alpha = 0.35)+
geom_point(data=adres2, aes(x=lon, y=lat), size =15, col ="red", alpha=0.35)+
xlab("")+ylab("")+ggtitle("TYTUŁ")+
theme(
legend.position = "bottom",
legend.title=element_text(""),
legend.key = element_rect(colour = "black"),
legend.background = element_rect(fill="#94BEE8"),
plot.background = element_rect(fill = "#94BEE8", colour = 'red')
)+scale_colour_discrete(name="LICZBA POŁĄCZEŃ")
plot(p)
}, width=500, height=500)

问题 2。我在向 ggmap 对象添加矩形或圆时遇到问题,例如,半径为 2 公里。

在此先感谢您的帮助。

最佳答案

通过使用解决

+coord_fixed(ratio = 1.45)

它不是准确的答案,但工作正常。

我通过应用 geom_polygon() 解决了第二个问题。我不知道为什么它最近不工作。

关于css - 如何减少 Shiny 中的白边,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27011731/

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