This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(RSQLite) | |
| library(MonetDBLite) | |
| library(DBI) | |
| #con <- dbConnect(MonetDBLite::MonetDBLite()) | |
| #con <- DBI::dbConnect(RSQLite::SQLite(), path = ":memory:") | |
| dbWriteTable(con, "mtcars", mtcars) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(dplyr) | |
| library(dbplyr) | |
| library(DT) | |
| library(shinydashboard) | |
| ui <- dashboardPage( | |
| dashboardHeader(title = "Quick Example"), | |
| dashboardSidebar(selectInput("select", "Selection", c("one", "two"))), | |
| dashboardBody( | |
| tabsetPanel( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| title: "Immunogenicity - Tiered Approuch to Assess ADA Positive Samples" | |
| output: | |
| flexdashboard::flex_dashboard: | |
| orientation: rows | |
| vertical_layout: fill | |
| params: | |
| screening: "Sample_ADA_Data_05062017_Screening.csv" | |
| confirmatory: "Sample_ADA_Data_05062017_Confirmatory.csv" | |
| screening_cut_point: 200 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(shinydashboard) | |
| library(shiny) | |
| library(dplyr) | |
| library(dbplyr) | |
| library(odbc) | |
| library(DBI) | |
| library(dbplot) | |
| library(ggplot2) | |
| library(waffle) | |
| library(DT) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| variables: | |
| manufacturer: | |
| trans: fabricante | |
| model: | |
| trans: modelo | |
| displ: | |
| trans: despl | |
| year: | |
| trans: anio | |
| cyl: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| variables: | |
| cut: | |
| trans: corte | |
| desc: Calidad del corte | |
| values: | |
| Good: Bueno | |
| Very Good: Muy Bueno | |
| clarity: | |
| trans: claridad | |
| desc: Que tan claro es el diamante |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(tidyverse, warn.conflicts = FALSE) | |
| df <- tribble( | |
| ~id, ~port, | |
| "a", "22,33", | |
| "a", "22,44", | |
| "b", "33, 434" | |
| ) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(dbplyr, warn.conflicts = FALSE) | |
| library(dplyr, warn.conflicts = FALSE) | |
| library(purrr, warn.conflicts = FALSE) | |
| library(DBI, warn.conflicts = FALSE) | |
| library(rlang, warn.conflicts = FALSE) | |
| con <- DBI::dbConnect(RSQLite::SQLite(), path = ":dbname:") | |
| db_mtcars <- copy_to(con, mtcars) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(dbplyr, warn.conflicts = FALSE) | |
| library(dplyr, warn.conflicts = FALSE) | |
| library(purrr, warn.conflicts = FALSE) | |
| library(DBI, warn.conflicts = FALSE) | |
| library(rlang, warn.conflicts = FALSE) | |
| con <- DBI::dbConnect(RSQLite::SQLite(), path = ":dbname:") | |
| db_mtcars <- copy_to(con, mtcars) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # GCS Image - 18.04 LTS (don't use Minimal!!) | |
| # Dashboard: {IP ADDRESS}:8080/api/v1/namespaces/kube-system/services/https:kubernetes-dashboard:/proxy/#!/pod?namespace=default | |
| #!/bin/bash | |
| RSTUDIO="rstudio-server-1.1.463-amd64.deb" | |
| SPARK="2.3.0" | |
| HADOOP="2.7" | |
| SPARKLYR="0.9.2" |