├── .github └── workflows │ └── build.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── environment-dev.yml ├── environment.yml ├── include └── xvega │ ├── grammar │ ├── chart.hpp │ ├── config.hpp │ ├── config │ │ ├── area_config.hpp │ │ ├── auto_size_params.hpp │ │ ├── axis_config.hpp │ │ ├── bar_config.hpp │ │ ├── base_config.hpp │ │ ├── box_plot_config.hpp │ │ ├── composition_config.hpp │ │ ├── error_band_config.hpp │ │ ├── error_bar_config.hpp │ │ ├── header_config.hpp │ │ ├── legend_config.hpp │ │ ├── line_config.hpp │ │ ├── mark_config.hpp │ │ ├── overlay_mark_def.hpp │ │ ├── projection_config.hpp │ │ ├── range_config.hpp │ │ ├── rect_config.hpp │ │ ├── scale_config.hpp │ │ ├── selection_config.hpp │ │ ├── style_config_index.hpp │ │ ├── tick_config.hpp │ │ ├── title_config.hpp │ │ └── view_config.hpp │ ├── data │ │ ├── data_format.hpp │ │ ├── data_format │ │ │ ├── csv_data_format.hpp │ │ │ ├── dsv_data_format.hpp │ │ │ ├── json_data_format.hpp │ │ │ ├── topo_data_format.hpp │ │ │ └── tsv_data_format.hpp │ │ ├── data_source │ │ │ ├── inline_data.hpp │ │ │ ├── named_data.hpp │ │ │ └── url_data.hpp │ │ └── generator │ │ │ ├── graticule_generator.hpp │ │ │ ├── sequence_generator.hpp │ │ │ └── sphere_generator.hpp │ ├── encodings.hpp │ ├── encodings │ │ ├── encoding-channel-options │ │ │ ├── aggregate.hpp │ │ │ ├── axis.hpp │ │ │ ├── bin.hpp │ │ │ ├── condition.hpp │ │ │ ├── datetime.hpp │ │ │ ├── datum.hpp │ │ │ ├── field.hpp │ │ │ ├── header.hpp │ │ │ ├── impute.hpp │ │ │ ├── legend.hpp │ │ │ ├── repeatRef.hpp │ │ │ ├── scale.hpp │ │ │ ├── sort.hpp │ │ │ ├── stack.hpp │ │ │ ├── timeunit.hpp │ │ │ └── value.hpp │ │ └── encoding-channels │ │ │ ├── detail-channel │ │ │ └── detail.hpp │ │ │ ├── facet-channels │ │ │ ├── column.hpp │ │ │ ├── facet.hpp │ │ │ └── row.hpp │ │ │ ├── hyperlink-channels │ │ │ └── href.hpp │ │ │ ├── mark-property-channels │ │ │ ├── color.hpp │ │ │ ├── fill.hpp │ │ │ ├── fillOpacity.hpp │ │ │ ├── opacity.hpp │ │ │ ├── shape.hpp │ │ │ ├── size.hpp │ │ │ ├── stroke.hpp │ │ │ ├── strokeDash.hpp │ │ │ ├── strokeOpacity.hpp │ │ │ └── strokeWidth.hpp │ │ │ ├── order-channel │ │ │ └── order.hpp │ │ │ ├── position-channels │ │ │ ├── latitude.hpp │ │ │ ├── latitude2.hpp │ │ │ ├── longitude.hpp │ │ │ ├── longitude2.hpp │ │ │ ├── x.hpp │ │ │ ├── x2.hpp │ │ │ ├── xerror.hpp │ │ │ ├── xerror2.hpp │ │ │ ├── y.hpp │ │ │ ├── y2.hpp │ │ │ ├── yerror.hpp │ │ │ └── yerror2.hpp │ │ │ └── text-tooltip-channels │ │ │ ├── key.hpp │ │ │ ├── text.hpp │ │ │ └── tooltip.hpp │ ├── marks.hpp │ ├── marks │ │ ├── mark_arc.hpp │ │ ├── mark_area.hpp │ │ ├── mark_bar.hpp │ │ ├── mark_circle.hpp │ │ ├── mark_geoshape.hpp │ │ ├── mark_image.hpp │ │ ├── mark_line.hpp │ │ ├── mark_point.hpp │ │ ├── mark_rect.hpp │ │ ├── mark_rule.hpp │ │ ├── mark_square.hpp │ │ ├── mark_text.hpp │ │ ├── mark_tick.hpp │ │ └── mark_trail.hpp │ ├── selections.hpp │ ├── selections │ │ ├── bindings │ │ │ ├── bind_checkbox.hpp │ │ │ ├── bind_input.hpp │ │ │ ├── bind_radio_select.hpp │ │ │ ├── bind_range.hpp │ │ │ └── legend_stream_binding.hpp │ │ ├── selection_interval.hpp │ │ ├── selection_mark.hpp │ │ ├── selection_multi.hpp │ │ ├── selection_single.hpp │ │ └── streams │ │ │ ├── derived_stream.hpp │ │ │ ├── event_stream.hpp │ │ │ └── merged_stream.hpp │ ├── title.hpp │ ├── transformations.hpp │ ├── transformations │ │ ├── transform_aggregate.hpp │ │ ├── transform_bin.hpp │ │ ├── transform_calculate.hpp │ │ ├── transform_density.hpp │ │ ├── transform_flatten.hpp │ │ ├── transform_fold.hpp │ │ ├── transform_impute.hpp │ │ ├── transform_join_aggregate.hpp │ │ ├── transform_loess.hpp │ │ ├── transform_lookup.hpp │ │ ├── transform_pivot.hpp │ │ ├── transform_quantile.hpp │ │ ├── transform_regression.hpp │ │ ├── transform_sample.hpp │ │ ├── transform_stack.hpp │ │ ├── transform_timeunit.hpp │ │ └── transform_window.hpp │ └── view_compositions.hpp │ ├── utils │ ├── custom_datatypes.hpp │ ├── random_string.hpp │ └── xany.hpp │ ├── xvega.hpp │ ├── xvega_config.hpp │ └── xvega_config_cling.hpp.in ├── notebooks └── demo.ipynb ├── src ├── grammar │ ├── chart.cpp │ ├── config.cpp │ ├── config │ │ ├── area_config.cpp │ │ ├── auto_size_params.cpp │ │ ├── axis_config.cpp │ │ ├── bar_config.cpp │ │ ├── base_config_private.hpp │ │ ├── box_plot_config.cpp │ │ ├── composition_config.cpp │ │ ├── error_band_config.cpp │ │ ├── error_bar_config.cpp │ │ ├── header_config.cpp │ │ ├── legend_config.cpp │ │ ├── line_config.cpp │ │ ├── mark_config.cpp │ │ ├── overlay_mark_def.cpp │ │ ├── projection_config.cpp │ │ ├── range_config.cpp │ │ ├── rect_config.cpp │ │ ├── scale_config.cpp │ │ ├── selection_config.cpp │ │ ├── style_config_index.cpp │ │ ├── tick_config.cpp │ │ ├── title_config.cpp │ │ └── view_config.cpp │ ├── data │ │ ├── data_format │ │ │ ├── csv_data_format.cpp │ │ │ ├── dsv_data_format.cpp │ │ │ ├── json_data_format.cpp │ │ │ ├── topo_data_format.cpp │ │ │ └── tsv_data_format.cpp │ │ ├── data_format_private.hpp │ │ ├── data_source │ │ │ ├── inline_data.cpp │ │ │ ├── named_data.cpp │ │ │ └── url_data.cpp │ │ └── generator │ │ │ ├── graticule_generator.cpp │ │ │ ├── sequence_generator.cpp │ │ │ └── sphere_generator.cpp │ ├── encodings.cpp │ ├── encodings │ │ ├── encoding-channel-options │ │ │ ├── aggregate.cpp │ │ │ ├── axis.cpp │ │ │ ├── bin.cpp │ │ │ ├── condition.cpp │ │ │ ├── datetime.cpp │ │ │ ├── header.cpp │ │ │ ├── impute.cpp │ │ │ ├── legend.cpp │ │ │ ├── repeatRef.cpp │ │ │ ├── scale.cpp │ │ │ ├── sort.cpp │ │ │ ├── timeunit.cpp │ │ │ └── value.cpp │ │ └── encoding-channels │ │ │ ├── detail-channel │ │ │ └── detail.cpp │ │ │ ├── facet-channels │ │ │ ├── column.cpp │ │ │ ├── facet.cpp │ │ │ └── row.cpp │ │ │ ├── hyperlink-channels │ │ │ └── href.cpp │ │ │ ├── mark-property-channels │ │ │ ├── color.cpp │ │ │ ├── fill.cpp │ │ │ ├── fillOpacity.cpp │ │ │ ├── opacity.cpp │ │ │ ├── shape.cpp │ │ │ ├── size.cpp │ │ │ ├── stroke.cpp │ │ │ ├── strokeDash.cpp │ │ │ ├── strokeOpacity.cpp │ │ │ └── strokeWidth.cpp │ │ │ ├── order-channel │ │ │ └── order.cpp │ │ │ ├── position-channels │ │ │ ├── latitude.cpp │ │ │ ├── latitude2.cpp │ │ │ ├── longitude.cpp │ │ │ ├── longitude2.cpp │ │ │ ├── x.cpp │ │ │ ├── x2.cpp │ │ │ ├── xerror.cpp │ │ │ ├── xerror2.cpp │ │ │ ├── y.cpp │ │ │ ├── y2.cpp │ │ │ ├── yerror.cpp │ │ │ └── yerror2.cpp │ │ │ └── text-tooltip-channels │ │ │ ├── key.cpp │ │ │ ├── text.cpp │ │ │ └── tooltip.cpp │ ├── marks │ │ ├── mark_arc.cpp │ │ ├── mark_area.cpp │ │ ├── mark_bar.cpp │ │ ├── mark_circle.cpp │ │ ├── mark_geoshape.cpp │ │ ├── mark_image.cpp │ │ ├── mark_line.cpp │ │ ├── mark_point.cpp │ │ ├── mark_rect.cpp │ │ ├── mark_rule.cpp │ │ ├── mark_square.cpp │ │ ├── mark_text.cpp │ │ ├── mark_tick.cpp │ │ └── mark_trail.cpp │ ├── marks_private.hpp │ ├── selections │ │ ├── bindings │ │ │ ├── bind_checkbox.cpp │ │ │ ├── bind_input.cpp │ │ │ ├── bind_radio_select.cpp │ │ │ ├── bind_range.cpp │ │ │ └── legend_stream_binding.cpp │ │ ├── selection_interval.cpp │ │ ├── selection_mark.cpp │ │ ├── selection_multi.cpp │ │ ├── selection_single.cpp │ │ └── streams │ │ │ ├── derived_stream.cpp │ │ │ ├── event_stream.cpp │ │ │ └── merged_stream.cpp │ ├── selections_private.hpp │ ├── title.cpp │ ├── transformations │ │ ├── transform_aggregate.cpp │ │ ├── transform_bin.cpp │ │ ├── transform_calculate.cpp │ │ ├── transform_density.cpp │ │ ├── transform_flatten.cpp │ │ ├── transform_fold.cpp │ │ ├── transform_impute.cpp │ │ ├── transform_join_aggregate.cpp │ │ ├── transform_loess.cpp │ │ ├── transform_lookup.cpp │ │ ├── transform_pivot.cpp │ │ ├── transform_quantile.cpp │ │ ├── transform_regression.cpp │ │ ├── transform_sample.cpp │ │ ├── transform_stack.cpp │ │ ├── transform_timeunit.cpp │ │ └── transform_window.cpp │ └── view_compositions.cpp └── utils │ ├── custom_datatypes.cpp │ ├── random_string.cpp │ ├── serialize.hpp │ └── xjson.hpp ├── test ├── CMakeLists.txt ├── main.cpp ├── test_configurations.cpp ├── test_data.cpp ├── test_encodings.cpp ├── test_marks.cpp ├── test_selections.cpp ├── test_transformations.cpp └── test_view_compositions.cpp └── xvegaConfig.cmake.in /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/README.md -------------------------------------------------------------------------------- /environment-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/environment-dev.yml -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/environment.yml -------------------------------------------------------------------------------- /include/xvega/grammar/chart.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/chart.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/area_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/area_config.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/auto_size_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/auto_size_params.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/axis_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/axis_config.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/bar_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/bar_config.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/base_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/base_config.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/box_plot_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/box_plot_config.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/composition_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/composition_config.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/error_band_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/error_band_config.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/error_bar_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/error_bar_config.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/header_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/header_config.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/legend_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/legend_config.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/line_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/line_config.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/mark_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/mark_config.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/overlay_mark_def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/overlay_mark_def.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/projection_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/projection_config.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/range_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/range_config.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/rect_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/rect_config.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/scale_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/scale_config.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/selection_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/selection_config.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/style_config_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/style_config_index.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/tick_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/tick_config.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/title_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/title_config.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/config/view_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/config/view_config.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/data/data_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/data/data_format.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/data/data_format/csv_data_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/data/data_format/csv_data_format.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/data/data_format/dsv_data_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/data/data_format/dsv_data_format.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/data/data_format/json_data_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/data/data_format/json_data_format.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/data/data_format/topo_data_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/data/data_format/topo_data_format.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/data/data_format/tsv_data_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/data/data_format/tsv_data_format.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/data/data_source/inline_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/data/data_source/inline_data.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/data/data_source/named_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/data/data_source/named_data.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/data/data_source/url_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/data/data_source/url_data.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/data/generator/graticule_generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/data/generator/graticule_generator.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/data/generator/sequence_generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/data/generator/sequence_generator.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/data/generator/sphere_generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/data/generator/sphere_generator.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channel-options/aggregate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channel-options/aggregate.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channel-options/axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channel-options/axis.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channel-options/bin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channel-options/bin.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channel-options/condition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channel-options/condition.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channel-options/datetime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channel-options/datetime.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channel-options/datum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channel-options/datum.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channel-options/field.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channel-options/field.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channel-options/header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channel-options/header.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channel-options/impute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channel-options/impute.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channel-options/legend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channel-options/legend.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channel-options/repeatRef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channel-options/repeatRef.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channel-options/scale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channel-options/scale.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channel-options/sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channel-options/sort.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channel-options/stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channel-options/stack.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channel-options/timeunit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channel-options/timeunit.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channel-options/value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channel-options/value.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/detail-channel/detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/detail-channel/detail.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/facet-channels/column.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/facet-channels/column.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/facet-channels/facet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/facet-channels/facet.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/facet-channels/row.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/facet-channels/row.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/hyperlink-channels/href.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/hyperlink-channels/href.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/mark-property-channels/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/mark-property-channels/color.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/mark-property-channels/fill.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/mark-property-channels/fill.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/mark-property-channels/fillOpacity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/mark-property-channels/fillOpacity.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/mark-property-channels/opacity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/mark-property-channels/opacity.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/mark-property-channels/shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/mark-property-channels/shape.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/mark-property-channels/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/mark-property-channels/size.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/mark-property-channels/stroke.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/mark-property-channels/stroke.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/mark-property-channels/strokeDash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/mark-property-channels/strokeDash.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/mark-property-channels/strokeOpacity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/mark-property-channels/strokeOpacity.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/mark-property-channels/strokeWidth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/mark-property-channels/strokeWidth.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/order-channel/order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/order-channel/order.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/position-channels/latitude.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/position-channels/latitude.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/position-channels/latitude2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/position-channels/latitude2.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/position-channels/longitude.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/position-channels/longitude.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/position-channels/longitude2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/position-channels/longitude2.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/position-channels/x.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/position-channels/x.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/position-channels/x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/position-channels/x2.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/position-channels/xerror.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/position-channels/xerror.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/position-channels/xerror2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/position-channels/xerror2.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/position-channels/y.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/position-channels/y.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/position-channels/y2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/position-channels/y2.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/position-channels/yerror.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/position-channels/yerror.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/position-channels/yerror2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/position-channels/yerror2.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/text-tooltip-channels/key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/text-tooltip-channels/key.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/text-tooltip-channels/text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/text-tooltip-channels/text.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/encodings/encoding-channels/text-tooltip-channels/tooltip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/encodings/encoding-channels/text-tooltip-channels/tooltip.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/marks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/marks.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/marks/mark_arc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/marks/mark_arc.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/marks/mark_area.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/marks/mark_area.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/marks/mark_bar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/marks/mark_bar.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/marks/mark_circle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/marks/mark_circle.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/marks/mark_geoshape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/marks/mark_geoshape.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/marks/mark_image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/marks/mark_image.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/marks/mark_line.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/marks/mark_line.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/marks/mark_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/marks/mark_point.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/marks/mark_rect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/marks/mark_rect.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/marks/mark_rule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/marks/mark_rule.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/marks/mark_square.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/marks/mark_square.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/marks/mark_text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/marks/mark_text.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/marks/mark_tick.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/marks/mark_tick.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/marks/mark_trail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/marks/mark_trail.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/selections.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/selections.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/selections/bindings/bind_checkbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/selections/bindings/bind_checkbox.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/selections/bindings/bind_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/selections/bindings/bind_input.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/selections/bindings/bind_radio_select.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/selections/bindings/bind_radio_select.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/selections/bindings/bind_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/selections/bindings/bind_range.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/selections/bindings/legend_stream_binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/selections/bindings/legend_stream_binding.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/selections/selection_interval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/selections/selection_interval.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/selections/selection_mark.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/selections/selection_mark.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/selections/selection_multi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/selections/selection_multi.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/selections/selection_single.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/selections/selection_single.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/selections/streams/derived_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/selections/streams/derived_stream.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/selections/streams/event_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/selections/streams/event_stream.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/selections/streams/merged_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/selections/streams/merged_stream.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/title.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/title.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/transformations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/transformations.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/transformations/transform_aggregate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/transformations/transform_aggregate.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/transformations/transform_bin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/transformations/transform_bin.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/transformations/transform_calculate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/transformations/transform_calculate.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/transformations/transform_density.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/transformations/transform_density.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/transformations/transform_flatten.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/transformations/transform_flatten.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/transformations/transform_fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/transformations/transform_fold.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/transformations/transform_impute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/transformations/transform_impute.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/transformations/transform_join_aggregate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/transformations/transform_join_aggregate.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/transformations/transform_loess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/transformations/transform_loess.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/transformations/transform_lookup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/transformations/transform_lookup.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/transformations/transform_pivot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/transformations/transform_pivot.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/transformations/transform_quantile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/transformations/transform_quantile.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/transformations/transform_regression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/transformations/transform_regression.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/transformations/transform_sample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/transformations/transform_sample.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/transformations/transform_stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/transformations/transform_stack.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/transformations/transform_timeunit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/transformations/transform_timeunit.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/transformations/transform_window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/transformations/transform_window.hpp -------------------------------------------------------------------------------- /include/xvega/grammar/view_compositions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/grammar/view_compositions.hpp -------------------------------------------------------------------------------- /include/xvega/utils/custom_datatypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/utils/custom_datatypes.hpp -------------------------------------------------------------------------------- /include/xvega/utils/random_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/utils/random_string.hpp -------------------------------------------------------------------------------- /include/xvega/utils/xany.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/utils/xany.hpp -------------------------------------------------------------------------------- /include/xvega/xvega.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/xvega.hpp -------------------------------------------------------------------------------- /include/xvega/xvega_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/xvega_config.hpp -------------------------------------------------------------------------------- /include/xvega/xvega_config_cling.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/include/xvega/xvega_config_cling.hpp.in -------------------------------------------------------------------------------- /notebooks/demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/notebooks/demo.ipynb -------------------------------------------------------------------------------- /src/grammar/chart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/chart.cpp -------------------------------------------------------------------------------- /src/grammar/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config.cpp -------------------------------------------------------------------------------- /src/grammar/config/area_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/area_config.cpp -------------------------------------------------------------------------------- /src/grammar/config/auto_size_params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/auto_size_params.cpp -------------------------------------------------------------------------------- /src/grammar/config/axis_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/axis_config.cpp -------------------------------------------------------------------------------- /src/grammar/config/bar_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/bar_config.cpp -------------------------------------------------------------------------------- /src/grammar/config/base_config_private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/base_config_private.hpp -------------------------------------------------------------------------------- /src/grammar/config/box_plot_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/box_plot_config.cpp -------------------------------------------------------------------------------- /src/grammar/config/composition_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/composition_config.cpp -------------------------------------------------------------------------------- /src/grammar/config/error_band_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/error_band_config.cpp -------------------------------------------------------------------------------- /src/grammar/config/error_bar_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/error_bar_config.cpp -------------------------------------------------------------------------------- /src/grammar/config/header_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/header_config.cpp -------------------------------------------------------------------------------- /src/grammar/config/legend_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/legend_config.cpp -------------------------------------------------------------------------------- /src/grammar/config/line_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/line_config.cpp -------------------------------------------------------------------------------- /src/grammar/config/mark_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/mark_config.cpp -------------------------------------------------------------------------------- /src/grammar/config/overlay_mark_def.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/overlay_mark_def.cpp -------------------------------------------------------------------------------- /src/grammar/config/projection_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/projection_config.cpp -------------------------------------------------------------------------------- /src/grammar/config/range_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/range_config.cpp -------------------------------------------------------------------------------- /src/grammar/config/rect_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/rect_config.cpp -------------------------------------------------------------------------------- /src/grammar/config/scale_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/scale_config.cpp -------------------------------------------------------------------------------- /src/grammar/config/selection_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/selection_config.cpp -------------------------------------------------------------------------------- /src/grammar/config/style_config_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/style_config_index.cpp -------------------------------------------------------------------------------- /src/grammar/config/tick_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/tick_config.cpp -------------------------------------------------------------------------------- /src/grammar/config/title_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/title_config.cpp -------------------------------------------------------------------------------- /src/grammar/config/view_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/config/view_config.cpp -------------------------------------------------------------------------------- /src/grammar/data/data_format/csv_data_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/data/data_format/csv_data_format.cpp -------------------------------------------------------------------------------- /src/grammar/data/data_format/dsv_data_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/data/data_format/dsv_data_format.cpp -------------------------------------------------------------------------------- /src/grammar/data/data_format/json_data_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/data/data_format/json_data_format.cpp -------------------------------------------------------------------------------- /src/grammar/data/data_format/topo_data_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/data/data_format/topo_data_format.cpp -------------------------------------------------------------------------------- /src/grammar/data/data_format/tsv_data_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/data/data_format/tsv_data_format.cpp -------------------------------------------------------------------------------- /src/grammar/data/data_format_private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/data/data_format_private.hpp -------------------------------------------------------------------------------- /src/grammar/data/data_source/inline_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/data/data_source/inline_data.cpp -------------------------------------------------------------------------------- /src/grammar/data/data_source/named_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/data/data_source/named_data.cpp -------------------------------------------------------------------------------- /src/grammar/data/data_source/url_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/data/data_source/url_data.cpp -------------------------------------------------------------------------------- /src/grammar/data/generator/graticule_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/data/generator/graticule_generator.cpp -------------------------------------------------------------------------------- /src/grammar/data/generator/sequence_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/data/generator/sequence_generator.cpp -------------------------------------------------------------------------------- /src/grammar/data/generator/sphere_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/data/generator/sphere_generator.cpp -------------------------------------------------------------------------------- /src/grammar/encodings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channel-options/aggregate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channel-options/aggregate.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channel-options/axis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channel-options/axis.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channel-options/bin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channel-options/bin.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channel-options/condition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channel-options/condition.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channel-options/datetime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channel-options/datetime.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channel-options/header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channel-options/header.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channel-options/impute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channel-options/impute.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channel-options/legend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channel-options/legend.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channel-options/repeatRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channel-options/repeatRef.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channel-options/scale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channel-options/scale.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channel-options/sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channel-options/sort.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channel-options/timeunit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channel-options/timeunit.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channel-options/value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channel-options/value.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/detail-channel/detail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/detail-channel/detail.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/facet-channels/column.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/facet-channels/column.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/facet-channels/facet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/facet-channels/facet.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/facet-channels/row.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/facet-channels/row.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/hyperlink-channels/href.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/hyperlink-channels/href.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/mark-property-channels/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/mark-property-channels/color.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/mark-property-channels/fill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/mark-property-channels/fill.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/mark-property-channels/fillOpacity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/mark-property-channels/fillOpacity.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/mark-property-channels/opacity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/mark-property-channels/opacity.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/mark-property-channels/shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/mark-property-channels/shape.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/mark-property-channels/size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/mark-property-channels/size.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/mark-property-channels/stroke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/mark-property-channels/stroke.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/mark-property-channels/strokeDash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/mark-property-channels/strokeDash.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/mark-property-channels/strokeOpacity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/mark-property-channels/strokeOpacity.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/mark-property-channels/strokeWidth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/mark-property-channels/strokeWidth.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/order-channel/order.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/order-channel/order.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/position-channels/latitude.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/position-channels/latitude.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/position-channels/latitude2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/position-channels/latitude2.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/position-channels/longitude.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/position-channels/longitude.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/position-channels/longitude2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/position-channels/longitude2.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/position-channels/x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/position-channels/x.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/position-channels/x2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/position-channels/x2.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/position-channels/xerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/position-channels/xerror.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/position-channels/xerror2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/position-channels/xerror2.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/position-channels/y.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/position-channels/y.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/position-channels/y2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/position-channels/y2.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/position-channels/yerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/position-channels/yerror.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/position-channels/yerror2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/position-channels/yerror2.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/text-tooltip-channels/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/text-tooltip-channels/key.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/text-tooltip-channels/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/text-tooltip-channels/text.cpp -------------------------------------------------------------------------------- /src/grammar/encodings/encoding-channels/text-tooltip-channels/tooltip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/encodings/encoding-channels/text-tooltip-channels/tooltip.cpp -------------------------------------------------------------------------------- /src/grammar/marks/mark_arc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/marks/mark_arc.cpp -------------------------------------------------------------------------------- /src/grammar/marks/mark_area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/marks/mark_area.cpp -------------------------------------------------------------------------------- /src/grammar/marks/mark_bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/marks/mark_bar.cpp -------------------------------------------------------------------------------- /src/grammar/marks/mark_circle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/marks/mark_circle.cpp -------------------------------------------------------------------------------- /src/grammar/marks/mark_geoshape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/marks/mark_geoshape.cpp -------------------------------------------------------------------------------- /src/grammar/marks/mark_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/marks/mark_image.cpp -------------------------------------------------------------------------------- /src/grammar/marks/mark_line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/marks/mark_line.cpp -------------------------------------------------------------------------------- /src/grammar/marks/mark_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/marks/mark_point.cpp -------------------------------------------------------------------------------- /src/grammar/marks/mark_rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/marks/mark_rect.cpp -------------------------------------------------------------------------------- /src/grammar/marks/mark_rule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/marks/mark_rule.cpp -------------------------------------------------------------------------------- /src/grammar/marks/mark_square.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/marks/mark_square.cpp -------------------------------------------------------------------------------- /src/grammar/marks/mark_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/marks/mark_text.cpp -------------------------------------------------------------------------------- /src/grammar/marks/mark_tick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/marks/mark_tick.cpp -------------------------------------------------------------------------------- /src/grammar/marks/mark_trail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/marks/mark_trail.cpp -------------------------------------------------------------------------------- /src/grammar/marks_private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/marks_private.hpp -------------------------------------------------------------------------------- /src/grammar/selections/bindings/bind_checkbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/selections/bindings/bind_checkbox.cpp -------------------------------------------------------------------------------- /src/grammar/selections/bindings/bind_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/selections/bindings/bind_input.cpp -------------------------------------------------------------------------------- /src/grammar/selections/bindings/bind_radio_select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/selections/bindings/bind_radio_select.cpp -------------------------------------------------------------------------------- /src/grammar/selections/bindings/bind_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/selections/bindings/bind_range.cpp -------------------------------------------------------------------------------- /src/grammar/selections/bindings/legend_stream_binding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/selections/bindings/legend_stream_binding.cpp -------------------------------------------------------------------------------- /src/grammar/selections/selection_interval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/selections/selection_interval.cpp -------------------------------------------------------------------------------- /src/grammar/selections/selection_mark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/selections/selection_mark.cpp -------------------------------------------------------------------------------- /src/grammar/selections/selection_multi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/selections/selection_multi.cpp -------------------------------------------------------------------------------- /src/grammar/selections/selection_single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/selections/selection_single.cpp -------------------------------------------------------------------------------- /src/grammar/selections/streams/derived_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/selections/streams/derived_stream.cpp -------------------------------------------------------------------------------- /src/grammar/selections/streams/event_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/selections/streams/event_stream.cpp -------------------------------------------------------------------------------- /src/grammar/selections/streams/merged_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/selections/streams/merged_stream.cpp -------------------------------------------------------------------------------- /src/grammar/selections_private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/selections_private.hpp -------------------------------------------------------------------------------- /src/grammar/title.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/title.cpp -------------------------------------------------------------------------------- /src/grammar/transformations/transform_aggregate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/transformations/transform_aggregate.cpp -------------------------------------------------------------------------------- /src/grammar/transformations/transform_bin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/transformations/transform_bin.cpp -------------------------------------------------------------------------------- /src/grammar/transformations/transform_calculate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/transformations/transform_calculate.cpp -------------------------------------------------------------------------------- /src/grammar/transformations/transform_density.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/transformations/transform_density.cpp -------------------------------------------------------------------------------- /src/grammar/transformations/transform_flatten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/transformations/transform_flatten.cpp -------------------------------------------------------------------------------- /src/grammar/transformations/transform_fold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/transformations/transform_fold.cpp -------------------------------------------------------------------------------- /src/grammar/transformations/transform_impute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/transformations/transform_impute.cpp -------------------------------------------------------------------------------- /src/grammar/transformations/transform_join_aggregate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/transformations/transform_join_aggregate.cpp -------------------------------------------------------------------------------- /src/grammar/transformations/transform_loess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/transformations/transform_loess.cpp -------------------------------------------------------------------------------- /src/grammar/transformations/transform_lookup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/transformations/transform_lookup.cpp -------------------------------------------------------------------------------- /src/grammar/transformations/transform_pivot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/transformations/transform_pivot.cpp -------------------------------------------------------------------------------- /src/grammar/transformations/transform_quantile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/transformations/transform_quantile.cpp -------------------------------------------------------------------------------- /src/grammar/transformations/transform_regression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/transformations/transform_regression.cpp -------------------------------------------------------------------------------- /src/grammar/transformations/transform_sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/transformations/transform_sample.cpp -------------------------------------------------------------------------------- /src/grammar/transformations/transform_stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/transformations/transform_stack.cpp -------------------------------------------------------------------------------- /src/grammar/transformations/transform_timeunit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/transformations/transform_timeunit.cpp -------------------------------------------------------------------------------- /src/grammar/transformations/transform_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/transformations/transform_window.cpp -------------------------------------------------------------------------------- /src/grammar/view_compositions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/grammar/view_compositions.cpp -------------------------------------------------------------------------------- /src/utils/custom_datatypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/utils/custom_datatypes.cpp -------------------------------------------------------------------------------- /src/utils/random_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/utils/random_string.cpp -------------------------------------------------------------------------------- /src/utils/serialize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/utils/serialize.hpp -------------------------------------------------------------------------------- /src/utils/xjson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/src/utils/xjson.hpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/test/main.cpp -------------------------------------------------------------------------------- /test/test_configurations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/test/test_configurations.cpp -------------------------------------------------------------------------------- /test/test_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/test/test_data.cpp -------------------------------------------------------------------------------- /test/test_encodings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/test/test_encodings.cpp -------------------------------------------------------------------------------- /test/test_marks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/test/test_marks.cpp -------------------------------------------------------------------------------- /test/test_selections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/test/test_selections.cpp -------------------------------------------------------------------------------- /test/test_transformations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/test/test_transformations.cpp -------------------------------------------------------------------------------- /test/test_view_compositions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/test/test_view_compositions.cpp -------------------------------------------------------------------------------- /xvegaConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xvega/HEAD/xvegaConfig.cmake.in --------------------------------------------------------------------------------