R或其他可以將AWS Redshift羣集連接到R閃亮應用程序的任何現有軟件包?我試圖使用Shiny構建交互式儀表板,數據源主要是Amazon Redshift或S3。任何可行的替代方案或建議也受到歡迎。Redshift to R Shiny Connectivity
0
A
回答
0
我在過去使用RJDBC和RPostgreSQL進行連接 - 兩者都很好。
請記住,Shinyapps.io不支持ODBC和JDBC Redshift驅動程序(因爲Shinyapps.io是在Ubuntu上構建的) - 因此RPostgreSQL可能是您最好的選擇。
在RJDBC或RPostgreSQL中獲得工作連接非常容易。
0
我使用R Shiny與紅移,非常好的結果。 首先,你必須安裝
library(RPostgreSQL)
library(shinydashboard) #just if you want to use nice dashboards
drv <- dbDriver("PostgreSQL")
conn <- dbConnect(drv, host="blabla.eu-west-1.redshift.amazonaws.com",
port="5439", dbname="xx, user="aaaaa", password="xxxxx")
conn #run you connection
test <-data.frame(dbGetQuery(conn, "select * from youtbalename"))
這是爲我工作。
相關問題
- 1. Amazon Redshift to Glacier
- 2. Redshift with R
- 3. R shiny updateCheckboxInput
- 4. 雙擊R-shiny
- 5. R Shiny not randomizing
- 6. R Shiny Destroy ObserveEvent
- 7. R Shiny observeEvent問題
- 8. Shiny R ColVis Extension:Group Columns
- 9. R Shiny HTML集成
- 10. `actionButton` action in Shiny R
- 11. R,Shiny:內聯selectInput
- 12. R Shiny:「All」Radio Button
- 13. R Shiny selectInput活動
- 14. Latex,RenderTable in Shiny,R
- 15. Shiny R重置dataTableOutput
- 16. R Shiny和p5.js
- 17. R Shiny eventReactive actionBotton interaction
- 18. R Shiny Tabsets同時處理
- 19. R中的多個圖Shiny
- 20. 操作textInput在R Shiny
- 21. R shiny conditionalPanel輸出值
- 22. 更改顏色actionButton Shiny R
- 23. R shiny部署上shinyApps.io
- 24. JGit - ssh connectivity
- 25. R Shiny MySql窗口認證
- 26. R Shiny App國際化
- 27. R Shiny dropdownButton反應大小?
- 28. R Shiny中的環境
- 29. R Shiny:保留舊輸出
- 30. 使用R下載Excel Shiny
您是否檢查過此https://blogs.aws.amazon.com/bigdata/post/Tx1G8828SPGX3PK/Connecting-R-with-Amazon-Redshift – error2007s