-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.Rhistory
124 lines (124 loc) · 3.27 KB
/
.Rhistory
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
usethis::use_github_action_check_standard()
usethis::use_github_action(check-standard=TRUE)
usethis::use_github_action()
usethis::use_pkgdown_github_pages()
usethis::use_testthat()
library(ThemePark)
build_site()
install.packages('pkgdown')
pkgdown::build_site()
pkgdown::build_site()
usethis::use_test("name")
usethis::use_test("themes")
g <- ggplot(mpg, aes(cty))
install.packages('ggplot2')
install.packages("ggplot2")
g <- ggplot(mpg, aes(cty))
library(ggplot2)
g <- ggplot(mpg, aes(cty))
g + geom_density(aes(fill = factor(cyl)), alpha = 0.8) +
labs(
title = "Density plot",
subtitle = "City Mileage Grouped by Number of cylinders",
caption = "Source: mpg",
x = "City Mileage",
fill = "# Cylinders"
) +
theme_gameofthrones() +
scale_color_barbie()
g <- ggplot(mpg, aes(cty))
g + geom_density(aes(fill = factor(cyl)), alpha = 0.8) +
labs(
title = "Density plot",
subtitle = "City Mileage Grouped by Number of cylinders",
caption = "Source: mpg",
x = "City Mileage",
fill = "# Cylinders"
) +
ThemePark::grand_budapest_theme_colors() +
ThemePark::scale_fill_barbie()
g <- ggplot(mpg, aes(cty))
g + geom_density(aes(fill = factor(cyl)), alpha = 0.8) +
labs(
title = "Density plot",
subtitle = "City Mileage Grouped by Number of cylinders",
caption = "Source: mpg",
x = "City Mileage",
fill = "# Cylinders"
) +
ThemePark::theme_gameofthrones() +
ThemePark::scale_fill_barbie()
g <- ggplot(mpg, aes(cty))
g + geom_density(aes(fill = cyl), alpha = 0.8) +
labs(
title = "Density plot",
subtitle = "City Mileage Grouped by Number of cylinders",
caption = "Source: mpg",
x = "City Mileage",
fill = "# Cylinders"
) +
ThemePark::theme_gameofthrones() +
ThemePark::scale_fill_barbie()
g <- ggplot(mpg, aes(cty))
g + geom_density(alpha = 0.8,fill = ThemePark::barbie_theme_colors["primary"]) +
labs(
title = "Density plot",
subtitle = "City Mileage",
caption = "Source: mpg",
x = "City Mileage",
fill = "# Cylinders"
) +
ThemePark::theme_gameofthrones() +
ThemePark::scale_fill_barbie()
g <- ggplot(mpg, aes(cty))
g + geom_density(fill = ThemePark::barbie_theme_colors["primary"]) +
labs(
title = "Density plot",
subtitle = "City Mileage",
caption = "Source: mpg",
x = "City Mileage",
fill = "# Cylinders"
) +
ThemePark::theme_gameofthrones() +
ThemePark::scale_fill_barbie()
g <- ggplot(mpg, aes(cty))
g + geom_density(fill = ThemePark::barbie_theme_colors["primary"]) +
labs(
title = "Density plot",
subtitle = "City Mileage",
caption = "Source: mpg",
x = "City Mileage",
fill = "# Cylinders"
) +
ThemePark::theme_gameofthrones()
ThemePark::barbie_theme_colors["primary"]
ThemePark::barbie_theme_colors
g <- ggplot(mpg, aes(cty))
g + geom_density(fill = ThemePark::barbie_theme_colors["medium"]) +
labs(
title = "Density plot",
subtitle = "City Mileage",
caption = "Source: mpg",
x = "City Mileage",
fill = "# Cylinders"
) +
ThemePark::theme_gameofthrones()
g <- ggplot(mpg, aes(cty))
g + geom_density(fill = barbie_theme_colors["medium"]) +
labs(
title = "Density plot",
subtitle = "City Mileage",
caption = "Source: mpg",
x = "City Mileage"
) +
theme_gameofthrones()
pkgdown::build_site()
devtools::load_all
devtools::load_all()
testthat::test_file("tests/testthat/test-ThemePark.R")
pkgdown::build_site()
pkgdown::build_site()
build_home_index(); init_site()
pkgdown::build_home_index(); pkgdown::init_site()
pkgdown::build_site()
pkgdown::build_site()