-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.Rhistory
More file actions
44 lines (44 loc) · 934 Bytes
/
.Rhistory
File metadata and controls
44 lines (44 loc) · 934 Bytes
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
# Libraries
# These are some helpful libraries for R in general and creating shiny applications
# To learn more about any particular library, type `?<name>` in the console
# Shiny
library(shinydashboard)
?shinydashboard
??shinydashboard
?`shinydashboard-package`
iris
iris_data <- iris
# The source command allows one to utilize functions and data stored in a separate R script.
source("libraries.R", local = TRUE)
shiny::runApp()
runApp()
df <- data.frame(
x = seq(50),
y = rnorm(50, 10, 3),
z = rnorm(50, 11, 2),
w = rnorm(50, 9, 2)
)
View(df)
df <- data.frame(
x = seq(50),
y = rnorm(50, 10, 3),
z = rnorm(50, 11, 2),
w = rnorm(50, 9, 2)
)
runApp()
shiny::runApp()
runApp()
df %>%
head(10) %>%
e_charts(x) %>%
e_polar() %>%
e_angle_axis() %>%
e_radius_axis(x) %>%
e_bar(y, coord_system = "polar") %>%
e_scatter(z, coord_system = "polar") %>%
e_title("Radial Chart")%>%
e_tooltip()%>%
e_theme('westeros')
runApp()
runApp()
runApp()