をシフトしている:私は、アプリを起動すると、結果がどのように見えるggiraphプロットは、これは私の例で光沢のあるアプリで
library(shiny)
library(ggplot2)
library(ggiraph)
df <- data.frame(achseX = c("A", "b"), achseY = c(12, 22))
server <- function(input, output) {
output$plot <- renderggiraph({
gg <- ggplot(data = df) + geom_bar_interactive(aes(tooltip = achseY, x = achseX, y = achseY), stat = "identity") +
theme_minimal()
return(ggiraph(code = print(gg), selection_type = "multiple", zoom_max = 4,
hover_css = "fill:#FF3333;stroke:black;cursor:pointer;",
selected_css = "fill:#FF3333;stroke:black;"))
})
}
ui <- fluidPage(
"The plot should start right under this text.",
ggiraphOutput("plot") ,
"This is where the plot should end."
)
shinyApp(ui = ui, server = server)
:
私は場所を示すためにテキスト行を追加しましたプロットを配置する必要があります。ご覧のように、プロットは別の位置にシフトされます。私は光沢のある例を起動したときに同じことが起こります:
# example 1:
shiny::runApp(appDir = system.file("shiny/crimes", package = "ggiraph"), display.mode = "showcase")
# example 2:
shiny::runApp(appDir = system.file("shiny/cars", package = "ggiraph"), display.mode = "showcase")
は、私が何かを逃しましたか?このプロットを正しい位置に取得するにはどうすればよいですか?
EDIT:
セッション情報:
R version 3.4.0 (2017-04-21)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows Server 2008 R2 x64 (build 7601) Service Pack 1
Matrix products: default
locale:
[1] LC_COLLATE=German_Germany.1252 LC_CTYPE=German_Germany.1252 LC_MONETARY=German_Germany.1252
[4] LC_NUMERIC=C LC_TIME=German_Germany.1252
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] gdtools_0.1.4 ggiraph_0.4.0 ggplot2_2.2.1 shiny_1.0.3
loaded via a namespace (and not attached):
[1] zip_1.0.0 Rcpp_0.12.11 compiler_3.4.0 plyr_1.8.4 R.methodsS3_1.7.1 R.utils_2.5.0
[7] base64enc_0.1-3 tools_3.4.0 digest_0.6.12 uuid_0.1-2 jsonlite_1.5 tibble_1.3.3
[13] gtable_0.2.0 rlang_0.1.1 DBI_0.7 yaml_2.1.14 officer_0.1.4 dplyr_0.5.0
[19] xml2_1.1.1 htmlwidgets_0.8 grid_3.4.0 R6_2.2.2 rvg_0.1.4 purrr_0.2.2.2
[25] magrittr_1.5 scales_0.4.1 htmltools_0.3.6 assertthat_0.2.0 mime_0.5 xtable_1.8-2
[31] colorspace_1.3-2 httpuv_1.3.5 labeling_0.3 lazyeval_0.2.0 munsell_0.4.3 R.oo_1.21.0
'sessionInfo()'の結果を追加して、使用しているブラウザを教えてください。(私のMacで問題を再現できません) –
コードに 'ggiraph'とは何ですか?編集:私はそれはタイプミスですが。今私はその名前のパッケージがあります:) –
@DavidGohelあなたの高速応答に感謝します。これはRStudio Viewerの視覚化問題と思われます。私はInternet Explorerで同じ問題を抱えていました。私がChromeで開くと、正常に動作します。だから、この話題が解決されたと思います。 –