├── .gitignore ├── LICENSE ├── README.md ├── data ├── .gitignore ├── IndianRailway_train_detail.csv ├── haberman.csv ├── lmsdata.csv ├── lmsdata_balanced.csv ├── up_res.csv └── up_res_data_dictionary ├── figures ├── Rplot-2-facetting_variables.tiff ├── Rplot-40.png ├── Rplot-EDA-01.png ├── Rplot-EDA-02.png ├── Rplot-EDA.png ├── Rplot-SO-1.png ├── Rplot-SO-2.png ├── Rplot-SO-3.png ├── Rplot-SO-4.png ├── Rplot-add-calculation_result-ggplot-method2.png ├── Rplot-add-calculation_result-ggplot.png ├── Rplot-annotate-00.png ├── Rplot-annotate-01.png ├── Rplot-annotate-05.png ├── Rplot-annotate-facets-1.tiff ├── Rplot-annotate-facets.png ├── Rplot-annotation-center.png ├── Rplot-calibri.png ├── Rplot-categorical-dist.png ├── Rplot-coloring-axis-ticks.png ├── Rplot-continuous-dist.png ├── Rplot-curvature-1.png ├── Rplot-curvature.png ├── Rplot-curve-1.png ├── Rplot-curve-straightline.png ├── Rplot-customlegend.png ├── Rplot-densitycurve01.png ├── Rplot-densitycurve02.png ├── Rplot-densityestimate.png ├── Rplot-densityestimate01.png ├── Rplot-economics-graph.png ├── Rplot-extrafont-pdf.png ├── Rplot-facet-order-larg-to-small.png ├── Rplot-facet-space-01.png ├── Rplot-facet_annotation.png ├── Rplot-geom_vline.png ├── Rplot-horizontal-legend.png ├── Rplot-increase_font_size.png ├── Rplot-issue-01.png ├── Rplot-issue-02.png ├── Rplot-lmregres-model-with-labels-1.png ├── Rplot-lmregres-model-with-labels.png ├── Rplot-missdata.png ├── Rplot-orderbarplots.png ├── Rplot-pdf.png ├── Rplot-plotting-long-text.tiff ├── Rplot-stackedbarplt-labels.png ├── Rplot-superscript.png ├── Rplot-weekday-as-text.png ├── Rplot-weekday.png ├── Rplot.png ├── Rplot01.png ├── Rplot02-pca.png ├── Rplot02.png ├── Rplot03.png ├── Rplot04-nolabel.png ├── Rplot04.png ├── Rplot05-geom_vline.png ├── Rplot0horizontal-legend.png ├── SO-ggplot2-Q.png ├── SO-ggplot2-ques-wed-jan-2018.png ├── animation.gif ├── annotate_tiles.png ├── boxplot_with_adj_p_value_label.png ├── boxplot_with_adj_p_value_label_anova.png ├── color_palette.png ├── daytonweather2014.png ├── drawing.png ├── grouped-barplot-3.png ├── grouped_barplot-1.png ├── grouped_barplot-2.png ├── labelled-horizontal-boxplots.png ├── labelled_bar_plot.png ├── multiple-kernel-density-plot0.png ├── multiple-kernel-density-plot1.png ├── myplot.png ├── path_graph.png ├── pic1.gif ├── plots.png ├── quantile-plot-01.png ├── quantile-plot.png ├── readme.md ├── rprogr-01.png ├── setosa.tiff ├── stacked_bar_plot_with_spaces.png ├── stacked_perct_group_barplot.png ├── stud_acad_perf_01.png ├── stud_acad_perf_02.png ├── stud_acad_perf_03.png ├── versicolor.tiff ├── violin_plot_1.png ├── violin_plot_2.png ├── virginica.tiff └── world_map.png ├── resources ├── Helpful R Tutorials.md ├── choosing-a-good-chart.pdf ├── choosing_the_correct_chart_type_for_data_visualization.pdf ├── ggplot2-cheatsheet.pdf ├── how-big-is-your-graph.pdf ├── intro_to_ggplot2.Rmd ├── kalboard360-dataset-information.docx ├── learning_resource_1.R ├── readme.md └── vad17canberra-morning.pdf ├── rmarkdown ├── test file.md └── understanding_data_visualization.Rmd └── scripts ├── build_custom_themes ├── building_custom_theme_01.R ├── building_custom_theme_02.R ├── building_custom_theme_03.R ├── learn_palette_baser_and_ggplot2.R ├── learn_to_create_custom_theme_01.R ├── my_custom_theme_01.R └── setup_custom_font.R ├── indian_trains ├── get_indian_train_geocoordinates.R ├── get_indian_trains_timetable.R └── readme.md ├── learn_animation ├── animate_example-01.R ├── animate_example-02.R ├── graphics_for_communication.R ├── lattice_data_visual_01.R └── misc_lattice_example.R ├── matplotlib_visuals_in_python └── understanding_matplotlib.py ├── quick_recipes ├── README.md ├── how_to_add_annotation_as_label_for_each_facet.R ├── how_to_add_annotation_in_center_of_plot.R ├── how_to_add_calculation_result_in_ggplot2.R ├── how_to_add_kruskal_wallis_test_to_each_facet_of_boxplot.R ├── how_to_add_regression_line_formula_in_plot.R ├── how_to_add_stacked_percentages_in_grouped_barplot.R ├── how_to_add_text_to_a_single_panel_of_a_ggplot_graph_with_2_faceting_variables.R ├── how_to_add_textures_to_fill_colours_in_ggplot2.ipynb ├── how_to_create_color_pallette_with_several_colors.R ├── how_to_create_grouped_barplots.R ├── how_to_create_violin_plots.R ├── how_to_increase_font_size_for_xgboost_importance_plot.R ├── how_to_plot_legend_as_text.R ├── how_to_plot_variables_from_different_data_frames_into_a_single_plot.R ├── how_to_plot_variables_with_misValues.R ├── how_to_print_multiple_graphs_from_a_single_dataframe.R ├── how_to_print_or_save_multiple_graphs_from_many_dataframes.R ├── how_to_saving_ggplot_graph_to_PDF_with_fonts_embedded.R ├── how_to_set_limit_for_x-axis.R ├── how_to_show_text_labels_on_top_of_the_bar.R ├── how_to_underline_text_in_a_label_and_plot_title.R ├── managing_text-wrapping_and_line-spacing.R ├── plot_multiple_graphs_on_same_page-02.R ├── plot_multiple_graphs_on_same_page-03.R ├── plot_multiple_graphs_on_same_page.R ├── using_facetgrid_to_add_highest_value_to_each_plot.R └── using_facetgrid_to_compare_each_factorlevel_with_anotherlevel.R ├── readme.md ├── top_50_ggplot2_visualizations ├── 1_corr_scatter_plt.R ├── 1_corr_scatter_plt_with_encircling.R └── README.md └── uncategorized ├── SO_dev_survey_visual_01.R ├── basic_animation.R ├── basic_maps.R ├── basic_script.R ├── book-1.R ├── chicago_vehicle_tow_visuals.R ├── how_to_fill_backdrop_with_two_different_colors.R ├── missing_migrant_analysis.R ├── missing_migrant_visualization.R ├── order_bars_in_ggplot2.R ├── plotting_cran_mirros_on_world_map.R ├── plotting_strings_on_x-axis.R ├── pretty_histograms.R ├── pretty_scatterplot.R ├── shade_regions_between_two_lines_in_a_plot.R ├── test-delete-later.R ├── test_github_merge.R └── tufte_01.R /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/IndianRailway_train_detail.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/data/IndianRailway_train_detail.csv -------------------------------------------------------------------------------- /data/haberman.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/data/haberman.csv -------------------------------------------------------------------------------- /data/lmsdata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/data/lmsdata.csv -------------------------------------------------------------------------------- /data/lmsdata_balanced.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/data/lmsdata_balanced.csv -------------------------------------------------------------------------------- /data/up_res.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/data/up_res.csv -------------------------------------------------------------------------------- /data/up_res_data_dictionary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/data/up_res_data_dictionary -------------------------------------------------------------------------------- /figures/Rplot-2-facetting_variables.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-2-facetting_variables.tiff -------------------------------------------------------------------------------- /figures/Rplot-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-40.png -------------------------------------------------------------------------------- /figures/Rplot-EDA-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-EDA-01.png -------------------------------------------------------------------------------- /figures/Rplot-EDA-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-EDA-02.png -------------------------------------------------------------------------------- /figures/Rplot-EDA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-EDA.png -------------------------------------------------------------------------------- /figures/Rplot-SO-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-SO-1.png -------------------------------------------------------------------------------- /figures/Rplot-SO-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-SO-2.png -------------------------------------------------------------------------------- /figures/Rplot-SO-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-SO-3.png -------------------------------------------------------------------------------- /figures/Rplot-SO-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-SO-4.png -------------------------------------------------------------------------------- /figures/Rplot-add-calculation_result-ggplot-method2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-add-calculation_result-ggplot-method2.png -------------------------------------------------------------------------------- /figures/Rplot-add-calculation_result-ggplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-add-calculation_result-ggplot.png -------------------------------------------------------------------------------- /figures/Rplot-annotate-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-annotate-00.png -------------------------------------------------------------------------------- /figures/Rplot-annotate-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-annotate-01.png -------------------------------------------------------------------------------- /figures/Rplot-annotate-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-annotate-05.png -------------------------------------------------------------------------------- /figures/Rplot-annotate-facets-1.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-annotate-facets-1.tiff -------------------------------------------------------------------------------- /figures/Rplot-annotate-facets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-annotate-facets.png -------------------------------------------------------------------------------- /figures/Rplot-annotation-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-annotation-center.png -------------------------------------------------------------------------------- /figures/Rplot-calibri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-calibri.png -------------------------------------------------------------------------------- /figures/Rplot-categorical-dist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-categorical-dist.png -------------------------------------------------------------------------------- /figures/Rplot-coloring-axis-ticks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-coloring-axis-ticks.png -------------------------------------------------------------------------------- /figures/Rplot-continuous-dist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-continuous-dist.png -------------------------------------------------------------------------------- /figures/Rplot-curvature-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-curvature-1.png -------------------------------------------------------------------------------- /figures/Rplot-curvature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-curvature.png -------------------------------------------------------------------------------- /figures/Rplot-curve-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-curve-1.png -------------------------------------------------------------------------------- /figures/Rplot-curve-straightline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-curve-straightline.png -------------------------------------------------------------------------------- /figures/Rplot-customlegend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-customlegend.png -------------------------------------------------------------------------------- /figures/Rplot-densitycurve01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-densitycurve01.png -------------------------------------------------------------------------------- /figures/Rplot-densitycurve02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-densitycurve02.png -------------------------------------------------------------------------------- /figures/Rplot-densityestimate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-densityestimate.png -------------------------------------------------------------------------------- /figures/Rplot-densityestimate01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-densityestimate01.png -------------------------------------------------------------------------------- /figures/Rplot-economics-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-economics-graph.png -------------------------------------------------------------------------------- /figures/Rplot-extrafont-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-extrafont-pdf.png -------------------------------------------------------------------------------- /figures/Rplot-facet-order-larg-to-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-facet-order-larg-to-small.png -------------------------------------------------------------------------------- /figures/Rplot-facet-space-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-facet-space-01.png -------------------------------------------------------------------------------- /figures/Rplot-facet_annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-facet_annotation.png -------------------------------------------------------------------------------- /figures/Rplot-geom_vline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-geom_vline.png -------------------------------------------------------------------------------- /figures/Rplot-horizontal-legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-horizontal-legend.png -------------------------------------------------------------------------------- /figures/Rplot-increase_font_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-increase_font_size.png -------------------------------------------------------------------------------- /figures/Rplot-issue-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-issue-01.png -------------------------------------------------------------------------------- /figures/Rplot-issue-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-issue-02.png -------------------------------------------------------------------------------- /figures/Rplot-lmregres-model-with-labels-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-lmregres-model-with-labels-1.png -------------------------------------------------------------------------------- /figures/Rplot-lmregres-model-with-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-lmregres-model-with-labels.png -------------------------------------------------------------------------------- /figures/Rplot-missdata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-missdata.png -------------------------------------------------------------------------------- /figures/Rplot-orderbarplots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-orderbarplots.png -------------------------------------------------------------------------------- /figures/Rplot-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-pdf.png -------------------------------------------------------------------------------- /figures/Rplot-plotting-long-text.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-plotting-long-text.tiff -------------------------------------------------------------------------------- /figures/Rplot-stackedbarplt-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-stackedbarplt-labels.png -------------------------------------------------------------------------------- /figures/Rplot-superscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-superscript.png -------------------------------------------------------------------------------- /figures/Rplot-weekday-as-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-weekday-as-text.png -------------------------------------------------------------------------------- /figures/Rplot-weekday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot-weekday.png -------------------------------------------------------------------------------- /figures/Rplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot.png -------------------------------------------------------------------------------- /figures/Rplot01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot01.png -------------------------------------------------------------------------------- /figures/Rplot02-pca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot02-pca.png -------------------------------------------------------------------------------- /figures/Rplot02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot02.png -------------------------------------------------------------------------------- /figures/Rplot03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot03.png -------------------------------------------------------------------------------- /figures/Rplot04-nolabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot04-nolabel.png -------------------------------------------------------------------------------- /figures/Rplot04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot04.png -------------------------------------------------------------------------------- /figures/Rplot05-geom_vline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot05-geom_vline.png -------------------------------------------------------------------------------- /figures/Rplot0horizontal-legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/Rplot0horizontal-legend.png -------------------------------------------------------------------------------- /figures/SO-ggplot2-Q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/SO-ggplot2-Q.png -------------------------------------------------------------------------------- /figures/SO-ggplot2-ques-wed-jan-2018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/SO-ggplot2-ques-wed-jan-2018.png -------------------------------------------------------------------------------- /figures/animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/animation.gif -------------------------------------------------------------------------------- /figures/annotate_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/annotate_tiles.png -------------------------------------------------------------------------------- /figures/boxplot_with_adj_p_value_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/boxplot_with_adj_p_value_label.png -------------------------------------------------------------------------------- /figures/boxplot_with_adj_p_value_label_anova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/boxplot_with_adj_p_value_label_anova.png -------------------------------------------------------------------------------- /figures/color_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/color_palette.png -------------------------------------------------------------------------------- /figures/daytonweather2014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/daytonweather2014.png -------------------------------------------------------------------------------- /figures/drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/drawing.png -------------------------------------------------------------------------------- /figures/grouped-barplot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/grouped-barplot-3.png -------------------------------------------------------------------------------- /figures/grouped_barplot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/grouped_barplot-1.png -------------------------------------------------------------------------------- /figures/grouped_barplot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/grouped_barplot-2.png -------------------------------------------------------------------------------- /figures/labelled-horizontal-boxplots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/labelled-horizontal-boxplots.png -------------------------------------------------------------------------------- /figures/labelled_bar_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/labelled_bar_plot.png -------------------------------------------------------------------------------- /figures/multiple-kernel-density-plot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/multiple-kernel-density-plot0.png -------------------------------------------------------------------------------- /figures/multiple-kernel-density-plot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/multiple-kernel-density-plot1.png -------------------------------------------------------------------------------- /figures/myplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/myplot.png -------------------------------------------------------------------------------- /figures/path_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/path_graph.png -------------------------------------------------------------------------------- /figures/pic1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/pic1.gif -------------------------------------------------------------------------------- /figures/plots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/plots.png -------------------------------------------------------------------------------- /figures/quantile-plot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/quantile-plot-01.png -------------------------------------------------------------------------------- /figures/quantile-plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/quantile-plot.png -------------------------------------------------------------------------------- /figures/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/readme.md -------------------------------------------------------------------------------- /figures/rprogr-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/rprogr-01.png -------------------------------------------------------------------------------- /figures/setosa.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/setosa.tiff -------------------------------------------------------------------------------- /figures/stacked_bar_plot_with_spaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/stacked_bar_plot_with_spaces.png -------------------------------------------------------------------------------- /figures/stacked_perct_group_barplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/stacked_perct_group_barplot.png -------------------------------------------------------------------------------- /figures/stud_acad_perf_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/stud_acad_perf_01.png -------------------------------------------------------------------------------- /figures/stud_acad_perf_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/stud_acad_perf_02.png -------------------------------------------------------------------------------- /figures/stud_acad_perf_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/stud_acad_perf_03.png -------------------------------------------------------------------------------- /figures/versicolor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/versicolor.tiff -------------------------------------------------------------------------------- /figures/violin_plot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/violin_plot_1.png -------------------------------------------------------------------------------- /figures/violin_plot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/violin_plot_2.png -------------------------------------------------------------------------------- /figures/virginica.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/virginica.tiff -------------------------------------------------------------------------------- /figures/world_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/figures/world_map.png -------------------------------------------------------------------------------- /resources/Helpful R Tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/resources/Helpful R Tutorials.md -------------------------------------------------------------------------------- /resources/choosing-a-good-chart.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/resources/choosing-a-good-chart.pdf -------------------------------------------------------------------------------- /resources/choosing_the_correct_chart_type_for_data_visualization.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/resources/choosing_the_correct_chart_type_for_data_visualization.pdf -------------------------------------------------------------------------------- /resources/ggplot2-cheatsheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/resources/ggplot2-cheatsheet.pdf -------------------------------------------------------------------------------- /resources/how-big-is-your-graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/resources/how-big-is-your-graph.pdf -------------------------------------------------------------------------------- /resources/intro_to_ggplot2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/resources/intro_to_ggplot2.Rmd -------------------------------------------------------------------------------- /resources/kalboard360-dataset-information.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/resources/kalboard360-dataset-information.docx -------------------------------------------------------------------------------- /resources/learning_resource_1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/resources/learning_resource_1.R -------------------------------------------------------------------------------- /resources/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/resources/readme.md -------------------------------------------------------------------------------- /resources/vad17canberra-morning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/resources/vad17canberra-morning.pdf -------------------------------------------------------------------------------- /rmarkdown/test file.md: -------------------------------------------------------------------------------- 1 | testing git commit -------------------------------------------------------------------------------- /rmarkdown/understanding_data_visualization.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/rmarkdown/understanding_data_visualization.Rmd -------------------------------------------------------------------------------- /scripts/build_custom_themes/building_custom_theme_01.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/build_custom_themes/building_custom_theme_01.R -------------------------------------------------------------------------------- /scripts/build_custom_themes/building_custom_theme_02.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/build_custom_themes/building_custom_theme_02.R -------------------------------------------------------------------------------- /scripts/build_custom_themes/building_custom_theme_03.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/build_custom_themes/building_custom_theme_03.R -------------------------------------------------------------------------------- /scripts/build_custom_themes/learn_palette_baser_and_ggplot2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/build_custom_themes/learn_palette_baser_and_ggplot2.R -------------------------------------------------------------------------------- /scripts/build_custom_themes/learn_to_create_custom_theme_01.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/build_custom_themes/learn_to_create_custom_theme_01.R -------------------------------------------------------------------------------- /scripts/build_custom_themes/my_custom_theme_01.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/build_custom_themes/my_custom_theme_01.R -------------------------------------------------------------------------------- /scripts/build_custom_themes/setup_custom_font.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/build_custom_themes/setup_custom_font.R -------------------------------------------------------------------------------- /scripts/indian_trains/get_indian_train_geocoordinates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/indian_trains/get_indian_train_geocoordinates.R -------------------------------------------------------------------------------- /scripts/indian_trains/get_indian_trains_timetable.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/indian_trains/get_indian_trains_timetable.R -------------------------------------------------------------------------------- /scripts/indian_trains/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/indian_trains/readme.md -------------------------------------------------------------------------------- /scripts/learn_animation/animate_example-01.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/learn_animation/animate_example-01.R -------------------------------------------------------------------------------- /scripts/learn_animation/animate_example-02.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/learn_animation/animate_example-02.R -------------------------------------------------------------------------------- /scripts/learn_animation/graphics_for_communication.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/learn_animation/graphics_for_communication.R -------------------------------------------------------------------------------- /scripts/learn_animation/lattice_data_visual_01.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/learn_animation/lattice_data_visual_01.R -------------------------------------------------------------------------------- /scripts/learn_animation/misc_lattice_example.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/learn_animation/misc_lattice_example.R -------------------------------------------------------------------------------- /scripts/matplotlib_visuals_in_python/understanding_matplotlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/matplotlib_visuals_in_python/understanding_matplotlib.py -------------------------------------------------------------------------------- /scripts/quick_recipes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/README.md -------------------------------------------------------------------------------- /scripts/quick_recipes/how_to_add_annotation_as_label_for_each_facet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/how_to_add_annotation_as_label_for_each_facet.R -------------------------------------------------------------------------------- /scripts/quick_recipes/how_to_add_annotation_in_center_of_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/how_to_add_annotation_in_center_of_plot.R -------------------------------------------------------------------------------- /scripts/quick_recipes/how_to_add_calculation_result_in_ggplot2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/how_to_add_calculation_result_in_ggplot2.R -------------------------------------------------------------------------------- /scripts/quick_recipes/how_to_add_kruskal_wallis_test_to_each_facet_of_boxplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/how_to_add_kruskal_wallis_test_to_each_facet_of_boxplot.R -------------------------------------------------------------------------------- /scripts/quick_recipes/how_to_add_regression_line_formula_in_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/how_to_add_regression_line_formula_in_plot.R -------------------------------------------------------------------------------- /scripts/quick_recipes/how_to_add_stacked_percentages_in_grouped_barplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/how_to_add_stacked_percentages_in_grouped_barplot.R -------------------------------------------------------------------------------- /scripts/quick_recipes/how_to_add_text_to_a_single_panel_of_a_ggplot_graph_with_2_faceting_variables.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/how_to_add_text_to_a_single_panel_of_a_ggplot_graph_with_2_faceting_variables.R -------------------------------------------------------------------------------- /scripts/quick_recipes/how_to_add_textures_to_fill_colours_in_ggplot2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/how_to_add_textures_to_fill_colours_in_ggplot2.ipynb -------------------------------------------------------------------------------- /scripts/quick_recipes/how_to_create_color_pallette_with_several_colors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/how_to_create_color_pallette_with_several_colors.R -------------------------------------------------------------------------------- /scripts/quick_recipes/how_to_create_grouped_barplots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/how_to_create_grouped_barplots.R -------------------------------------------------------------------------------- /scripts/quick_recipes/how_to_create_violin_plots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/how_to_create_violin_plots.R -------------------------------------------------------------------------------- /scripts/quick_recipes/how_to_increase_font_size_for_xgboost_importance_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/how_to_increase_font_size_for_xgboost_importance_plot.R -------------------------------------------------------------------------------- /scripts/quick_recipes/how_to_plot_legend_as_text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/how_to_plot_legend_as_text.R -------------------------------------------------------------------------------- /scripts/quick_recipes/how_to_plot_variables_from_different_data_frames_into_a_single_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/how_to_plot_variables_from_different_data_frames_into_a_single_plot.R -------------------------------------------------------------------------------- /scripts/quick_recipes/how_to_plot_variables_with_misValues.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/how_to_plot_variables_with_misValues.R -------------------------------------------------------------------------------- /scripts/quick_recipes/how_to_print_multiple_graphs_from_a_single_dataframe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/how_to_print_multiple_graphs_from_a_single_dataframe.R -------------------------------------------------------------------------------- /scripts/quick_recipes/how_to_print_or_save_multiple_graphs_from_many_dataframes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/how_to_print_or_save_multiple_graphs_from_many_dataframes.R -------------------------------------------------------------------------------- /scripts/quick_recipes/how_to_saving_ggplot_graph_to_PDF_with_fonts_embedded.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/how_to_saving_ggplot_graph_to_PDF_with_fonts_embedded.R -------------------------------------------------------------------------------- /scripts/quick_recipes/how_to_set_limit_for_x-axis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/how_to_set_limit_for_x-axis.R -------------------------------------------------------------------------------- /scripts/quick_recipes/how_to_show_text_labels_on_top_of_the_bar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/how_to_show_text_labels_on_top_of_the_bar.R -------------------------------------------------------------------------------- /scripts/quick_recipes/how_to_underline_text_in_a_label_and_plot_title.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/how_to_underline_text_in_a_label_and_plot_title.R -------------------------------------------------------------------------------- /scripts/quick_recipes/managing_text-wrapping_and_line-spacing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/managing_text-wrapping_and_line-spacing.R -------------------------------------------------------------------------------- /scripts/quick_recipes/plot_multiple_graphs_on_same_page-02.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/plot_multiple_graphs_on_same_page-02.R -------------------------------------------------------------------------------- /scripts/quick_recipes/plot_multiple_graphs_on_same_page-03.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/plot_multiple_graphs_on_same_page-03.R -------------------------------------------------------------------------------- /scripts/quick_recipes/plot_multiple_graphs_on_same_page.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/plot_multiple_graphs_on_same_page.R -------------------------------------------------------------------------------- /scripts/quick_recipes/using_facetgrid_to_add_highest_value_to_each_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/using_facetgrid_to_add_highest_value_to_each_plot.R -------------------------------------------------------------------------------- /scripts/quick_recipes/using_facetgrid_to_compare_each_factorlevel_with_anotherlevel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/quick_recipes/using_facetgrid_to_compare_each_factorlevel_with_anotherlevel.R -------------------------------------------------------------------------------- /scripts/readme.md: -------------------------------------------------------------------------------- 1 | All the scripts are present in this folder 2 | -------------------------------------------------------------------------------- /scripts/top_50_ggplot2_visualizations/1_corr_scatter_plt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/top_50_ggplot2_visualizations/1_corr_scatter_plt.R -------------------------------------------------------------------------------- /scripts/top_50_ggplot2_visualizations/1_corr_scatter_plt_with_encircling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/top_50_ggplot2_visualizations/1_corr_scatter_plt_with_encircling.R -------------------------------------------------------------------------------- /scripts/top_50_ggplot2_visualizations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/top_50_ggplot2_visualizations/README.md -------------------------------------------------------------------------------- /scripts/uncategorized/SO_dev_survey_visual_01.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/uncategorized/SO_dev_survey_visual_01.R -------------------------------------------------------------------------------- /scripts/uncategorized/basic_animation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/uncategorized/basic_animation.R -------------------------------------------------------------------------------- /scripts/uncategorized/basic_maps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/uncategorized/basic_maps.R -------------------------------------------------------------------------------- /scripts/uncategorized/basic_script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/uncategorized/basic_script.R -------------------------------------------------------------------------------- /scripts/uncategorized/book-1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/uncategorized/book-1.R -------------------------------------------------------------------------------- /scripts/uncategorized/chicago_vehicle_tow_visuals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/uncategorized/chicago_vehicle_tow_visuals.R -------------------------------------------------------------------------------- /scripts/uncategorized/how_to_fill_backdrop_with_two_different_colors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/uncategorized/how_to_fill_backdrop_with_two_different_colors.R -------------------------------------------------------------------------------- /scripts/uncategorized/missing_migrant_analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/uncategorized/missing_migrant_analysis.R -------------------------------------------------------------------------------- /scripts/uncategorized/missing_migrant_visualization.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/uncategorized/missing_migrant_visualization.R -------------------------------------------------------------------------------- /scripts/uncategorized/order_bars_in_ggplot2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/uncategorized/order_bars_in_ggplot2.R -------------------------------------------------------------------------------- /scripts/uncategorized/plotting_cran_mirros_on_world_map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/uncategorized/plotting_cran_mirros_on_world_map.R -------------------------------------------------------------------------------- /scripts/uncategorized/plotting_strings_on_x-axis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/uncategorized/plotting_strings_on_x-axis.R -------------------------------------------------------------------------------- /scripts/uncategorized/pretty_histograms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/uncategorized/pretty_histograms.R -------------------------------------------------------------------------------- /scripts/uncategorized/pretty_scatterplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/uncategorized/pretty_scatterplot.R -------------------------------------------------------------------------------- /scripts/uncategorized/shade_regions_between_two_lines_in_a_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/uncategorized/shade_regions_between_two_lines_in_a_plot.R -------------------------------------------------------------------------------- /scripts/uncategorized/test-delete-later.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/uncategorized/test-delete-later.R -------------------------------------------------------------------------------- /scripts/uncategorized/test_github_merge.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/uncategorized/test_github_merge.R -------------------------------------------------------------------------------- /scripts/uncategorized/tufte_01.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duttashi/visualizer/HEAD/scripts/uncategorized/tufte_01.R --------------------------------------------------------------------------------