@@ -8,6 +8,8 @@ S3method(apply_scale_defaults,scale_datetime)
88S3method(apply_scale_defaults,scale_nominal)
99S3method(apply_scale_defaults,scale_numeric)
1010S3method(apply_scale_defaults,scale_ordinal)
11+ S3method(arrange_,ggvis)
12+ S3method(arrange_,reactive)
1113S3method(as.character,prop_band)
1214S3method(as.character,prop_constant)
1315S3method(as.character,prop_reactive)
@@ -63,11 +65,15 @@ S3method(constant_vars,grouped_df)
6365S3method(data_range,character)
6466S3method(data_range,default)
6567S3method(data_range,factor)
68+ S3method(distinct_,ggvis)
69+ S3method(distinct_,reactive)
6670S3method(empty,default)
6771S3method(explain,ggvis)
6872S3method(extract_reactives,default)
6973S3method(extract_reactives,ggvis_props)
7074S3method(extract_reactives,prop_reactive)
75+ S3method(filter_,ggvis)
76+ S3method(filter_,reactive)
7177S3method(format,ggvis_axis)
7278S3method(format,ggvis_legend)
7379S3method(format,ggvis_props)
@@ -88,8 +94,14 @@ S3method(formula,prop)
8894S3method(fullseq,Date)
8995S3method(fullseq,POSIXt)
9096S3method(fullseq,numeric)
97+ S3method(group_by_,ggvis)
98+ S3method(group_by_,reactive)
99+ S3method(groups,ggvis)
100+ S3method(groups,reactive)
91101S3method(max_rows,data.frame)
92102S3method(max_rows,grouped_df)
103+ S3method(mutate_,ggvis)
104+ S3method(mutate_,reactive)
93105S3method(new_prop,band)
94106S3method(new_prop,call)
95107S3method(new_prop,default)
@@ -130,14 +142,26 @@ S3method(prop_vega,prop_variable)
130142S3method(remove_missing,data.frame)
131143S3method(remove_missing,default)
132144S3method(remove_missing,split_df)
145+ S3method(rename_,ggvis)
146+ S3method(rename_,reactive)
133147S3method(rep,singular)
134148S3method(scale_countable,default)
135149S3method(scale_countable,scale_datetime)
136150S3method(scale_countable,scale_logical)
137151S3method(scale_countable,scale_nominal)
138152S3method(scale_countable,scale_numeric)
139153S3method(scale_countable,scale_ordinal)
154+ S3method(select_,ggvis)
155+ S3method(select_,reactive)
156+ S3method(slice_,ggvis)
157+ S3method(slice_,reactive)
158+ S3method(summarise_,ggvis)
159+ S3method(summarise_,reactive)
140160S3method(to_csv,data.frame)
161+ S3method(transmute_,ggvis)
162+ S3method(transmute_,reactive)
163+ S3method(ungroup,ggvis)
164+ S3method(ungroup,reactive)
141165S3method(value,default)
142166S3method(value,reactive)
143167S3method(vector_type,"NULL")
@@ -171,8 +195,6 @@ export(add_props)
171195export(add_relative_scales)
172196export(add_scale)
173197export(add_tooltip)
174- export(arrange_.ggvis)
175- export(arrange_.reactive)
176198export(auto_group)
177199export(axis_props)
178200export(band)
@@ -190,8 +212,6 @@ export(compute_tabulate)
190212export(create_broker)
191213export(create_input)
192214export(default_options)
193- export(distinct_.ggvis)
194- export(distinct_.reactive)
195215export(emit_arcs)
196216export(emit_images)
197217export(emit_paths)
@@ -202,8 +222,6 @@ export(emit_text)
202222export(explain)
203223export(export_png)
204224export(export_svg)
205- export(filter_.ggvis)
206- export(filter_.reactive)
207225export(fullseq)
208226export(get_data)
209227export(ggvis)
@@ -212,10 +230,6 @@ export(ggvisOutput)
212230export(ggvis_message)
213231export(ggvis_scale)
214232export(group_by)
215- export(group_by_.ggvis)
216- export(group_by_.reactive)
217- export(groups.ggvis)
218- export(groups.reactive)
219233export(handle_brush)
220234export(handle_click)
221235export(handle_hover)
@@ -266,16 +280,12 @@ export(legend_props)
266280export(linked_brush)
267281export(mainTopPanel)
268282export(mark)
269- export(mutate_.ggvis)
270- export(mutate_.reactive)
271283export(padding)
272284export(plot_height)
273285export(plot_width)
274286export(prop)
275287export(propname_to_scale)
276288export(props)
277- export(rename_.ggvis)
278- export(rename_.reactive)
279289export(resolution)
280290export(save_spec)
281291export(scale_datetime)
@@ -285,8 +295,6 @@ export(scale_numeric)
285295export(scale_ordinal)
286296export(scale_singular)
287297export(scaled_value)
288- export(select_.ggvis)
289- export(select_.reactive)
290298export(set_default_scale)
291299export(set_dscale)
292300export(set_options)
@@ -295,23 +303,27 @@ export(show_tooltip)
295303export(sidebarBottomPage)
296304export(sidebarBottomPanel)
297305export(singular)
298- export(slice_.ggvis)
299- export(slice_.reactive)
300- export(summarise_.ggvis)
301- export(summarise_.reactive)
302- export(transmute_.ggvis)
303- export(transmute_.reactive)
304- export(ungroup.ggvis)
305- export(ungroup.reactive)
306306export(up_down)
307307export(vector_type)
308308export(view_dynamic)
309309export(view_static)
310310export(waggle)
311311export(zero_range)
312312import(assertthat)
313+ importFrom(dplyr,arrange_)
314+ importFrom(dplyr,distinct_)
313315importFrom(dplyr,explain)
316+ importFrom(dplyr,filter_)
314317importFrom(dplyr,group_by)
318+ importFrom(dplyr,group_by_)
319+ importFrom(dplyr,groups)
320+ importFrom(dplyr,mutate_)
321+ importFrom(dplyr,rename_)
322+ importFrom(dplyr,select_)
323+ importFrom(dplyr,slice_)
324+ importFrom(dplyr,summarise_)
325+ importFrom(dplyr,transmute_)
326+ importFrom(dplyr,ungroup)
315327importFrom(htmltools,knit_print.html)
316328importFrom(htmltools,knit_print.shiny.tag)
317329importFrom(htmltools,knit_print.shiny.tag.list)
0 commit comments