@@ -23,6 +23,8 @@ class_scales_list <- S7::new_S3_class("ScalesList")
23
23
24
24
# User facing classes -----------------------------------------------------
25
25
26
+ # # Theme -------------------------------------------------------------------
27
+
26
28
# ' The theme class
27
29
# '
28
30
# ' The theme class holds information on how non-data elements of the plot
@@ -51,6 +53,8 @@ class_theme <- S7::new_class(
51
53
}
52
54
)
53
55
56
+ # # Labels ------------------------------------------------------------------
57
+
54
58
# ' The labels class
55
59
# '
56
60
# ' The labels class holds a list with label information to display as titles
@@ -59,6 +63,10 @@ class_theme <- S7::new_class(
59
63
# '
60
64
# ' @param labels A named list.
61
65
# '
66
+ # ' @details
67
+ # ' All members of `labels` are expected to be named and unique.
68
+ # '
69
+ # '
62
70
# ' @keywords internal
63
71
# ' @export
64
72
class_labels <- S7 :: new_class(
@@ -80,6 +88,8 @@ class_labels <- S7::new_class(
80
88
}
81
89
)
82
90
91
+ # # Mapping -----------------------------------------------------------------
92
+
83
93
# ' The mapping class
84
94
# '
85
95
# ' The mapping class holds a list of quoted expressions
@@ -102,6 +112,8 @@ class_mapping <- S7::new_class(
102
112
}
103
113
)
104
114
115
+ # # ggplot ------------------------------------------------------------------
116
+
105
117
# ' The ggplot class
106
118
# '
107
119
# ' The ggplot class collects the needed information to render a plot.
@@ -165,6 +177,8 @@ class_ggplot <- S7::new_class(
165
177
}
166
178
)
167
179
180
+ # # Built ggplot ------------------------------------------------------------
181
+
168
182
# ' The ggplot built class
169
183
# '
170
184
# ' The ggplot built class is an intermediate class and represents a processed
0 commit comments