-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmytalk.Rmd
84 lines (63 loc) · 1.41 KB
/
mytalk.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
---
title: "MyTalk"
output:
flexdashboard::flex_dashboard:
theme: flatly
css: www/styles.css
runtime: shiny
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
library(shinymaterial)
library(shinydashboard)
library(shiny)
library(highcharter)
library(magrittr)
```
# Agenda
Column
----------------------------------------
### Big Picture and Talk Highlights
- *Promote R into Production (Keynote by Joe)*
- Reproducible and **Pretty Research**
- Ending Key Note: Public Work (David Robinson)
- Various topics in Visualization, Database, Modeling etc.
- https://github.com/kbroman/RStudioConf2019Slides
### Chart 3
```{r}
```
Column
---------------------
### R in Production
- Challenges: Cutural/Organizational/Technical
- TMobile made R in Production
- ~~shinytest, shinyloadtest~~
- --profvis--
- --plot caching (for example landing screen)--
- reticulate R + Python
### Chart 4
```{r, echo=FALSE}
highchartOutput('hc')
output$hc <- renderHighchart({
Sys.sleep(3)
highchart() %>%
hc_chart(type = "pie") %>%
hc_xAxis(categories = iris$Species) %>%
hc_add_series(iris$Sepal.Length, name = "Fruit Consumption", showInLegend = FALSE)
})
```
# gt package
Column
-----------------------
### Highcharter
```{r, echo=FALSE}
fillRow(
highcharter::highchart() %>%
hc_chart(type = "column") %>%
hc_add_series(iris$Sepal.Length)
)
```
Column
--------------------
### box title
# gganimate