├── LICENSE ├── README.md ├── Seaborn Fundamentals ├── 01 Seaborn Basics │ ├── 01 Introduction to Seaborn │ │ └── introduction_to_seaborn.py │ ├── 02 Seaborn vs Matplotlib │ │ └── seaborn_vs_matplotlib.py │ ├── 03 Installing and Setting Up Seaborn │ │ └── installing_seaborn.py │ ├── 04 Seaborn’s High-Level Interface │ │ └── high_level_interface.py │ └── 05 Themes and Styling │ │ └── themes_and_styling.py ├── 02 Data Preparation │ ├── 01 Working with Pandas DataFrames │ │ └── working_with_pandas_dataframes.py │ ├── 02 Handling Missing Data │ │ └── handling_missing_data.py │ ├── 03 Data Aggregation with Pandas │ │ └── data_aggregation_with_pandas.py │ ├── 04 Reshaping Data │ │ └── reshaping_data.py │ └── 05 Integration with NumPy Arrays │ │ └── integration_with_numpy_arrays.py ├── 03 Statistical Plots │ ├── 01 Distribution Plots │ │ ├── displot.py │ │ ├── histplot.py │ │ └── kdeplot.py │ ├── 02 Categorical Plots │ │ ├── barplot.py │ │ ├── boxplot.py │ │ ├── countplot.py │ │ ├── stripplot.py │ │ ├── swarmplot.py │ │ └── violinplot.py │ ├── 03 Regression Plots │ │ ├── lmplot.py │ │ ├── regplot.py │ │ └── residual_plot.py │ ├── 04 Matrix Plots │ │ ├── clustermap.py │ │ └── heatmap.py │ ├── 05 Pair Plots │ │ ├── pairgrid.py │ │ └── pairplot.py │ └── 06 Joint Plots │ │ ├── jointgrid.py │ │ └── jointplot.py ├── 04 Customization │ ├── 01 Color Palettes │ │ └── color_palettes.py │ ├── 02 Axis Labels and Titles │ │ └── axis_labels_and_titles.py │ ├── 03 Figure Size and Aspect Ratios │ │ └── figure_size_and_aspect_ratios.py │ ├── 04 Customizing Plot Aesthetics │ │ └── customizing_plot_aesthetics.py │ ├── 05 Annotations and Text │ │ └── annotations_and_text.py │ └── 06 Faceting with FacetGrid and catplot │ │ └── faceting.py ├── 05 Multi-Plot Grids │ ├── 01 FacetGrid for Multi-Faceted Plots │ │ └── facetgrid_multi_faceted_plots.py │ ├── 02 PairGrid for Pairwise Relationships │ │ └── pairgrid_pairwise_relationships.py │ ├── 03 Catplot for Categorical Faceting │ │ └── catplot_categorical_faceting.py │ └── 04 Combining Plots with Subplots │ │ └── combining_plots_with_subplots.py └── 06 Advanced Visualizations │ ├── 01 Time Series Visualization │ └── time_series_visualization.py │ ├── 02 Customizing Plot Legends │ └── customizing_plot_legends.py │ ├── 03 Logarithmic Scales │ └── logarithmic_scales.py │ ├── 04 Combining Seaborn with Matplotlib │ └── combining_seaborn_with_matplotlib.py │ └── 05 Interactive Visualizations │ └── interactive_visualizations.py └── Seaborn Interview Questions └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/README.md -------------------------------------------------------------------------------- /Seaborn Fundamentals/01 Seaborn Basics/01 Introduction to Seaborn/introduction_to_seaborn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/01 Seaborn Basics/01 Introduction to Seaborn/introduction_to_seaborn.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/01 Seaborn Basics/02 Seaborn vs Matplotlib/seaborn_vs_matplotlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/01 Seaborn Basics/02 Seaborn vs Matplotlib/seaborn_vs_matplotlib.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/01 Seaborn Basics/03 Installing and Setting Up Seaborn/installing_seaborn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/01 Seaborn Basics/03 Installing and Setting Up Seaborn/installing_seaborn.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/01 Seaborn Basics/04 Seaborn’s High-Level Interface/high_level_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/01 Seaborn Basics/04 Seaborn’s High-Level Interface/high_level_interface.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/01 Seaborn Basics/05 Themes and Styling/themes_and_styling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/01 Seaborn Basics/05 Themes and Styling/themes_and_styling.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/02 Data Preparation/01 Working with Pandas DataFrames/working_with_pandas_dataframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/02 Data Preparation/01 Working with Pandas DataFrames/working_with_pandas_dataframes.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/02 Data Preparation/02 Handling Missing Data/handling_missing_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/02 Data Preparation/02 Handling Missing Data/handling_missing_data.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/02 Data Preparation/03 Data Aggregation with Pandas/data_aggregation_with_pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/02 Data Preparation/03 Data Aggregation with Pandas/data_aggregation_with_pandas.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/02 Data Preparation/04 Reshaping Data/reshaping_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/02 Data Preparation/04 Reshaping Data/reshaping_data.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/02 Data Preparation/05 Integration with NumPy Arrays/integration_with_numpy_arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/02 Data Preparation/05 Integration with NumPy Arrays/integration_with_numpy_arrays.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/03 Statistical Plots/01 Distribution Plots/displot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/03 Statistical Plots/01 Distribution Plots/displot.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/03 Statistical Plots/01 Distribution Plots/histplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/03 Statistical Plots/01 Distribution Plots/histplot.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/03 Statistical Plots/01 Distribution Plots/kdeplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/03 Statistical Plots/01 Distribution Plots/kdeplot.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/03 Statistical Plots/02 Categorical Plots/barplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/03 Statistical Plots/02 Categorical Plots/barplot.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/03 Statistical Plots/02 Categorical Plots/boxplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/03 Statistical Plots/02 Categorical Plots/boxplot.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/03 Statistical Plots/02 Categorical Plots/countplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/03 Statistical Plots/02 Categorical Plots/countplot.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/03 Statistical Plots/02 Categorical Plots/stripplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/03 Statistical Plots/02 Categorical Plots/stripplot.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/03 Statistical Plots/02 Categorical Plots/swarmplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/03 Statistical Plots/02 Categorical Plots/swarmplot.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/03 Statistical Plots/02 Categorical Plots/violinplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/03 Statistical Plots/02 Categorical Plots/violinplot.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/03 Statistical Plots/03 Regression Plots/lmplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/03 Statistical Plots/03 Regression Plots/lmplot.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/03 Statistical Plots/03 Regression Plots/regplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/03 Statistical Plots/03 Regression Plots/regplot.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/03 Statistical Plots/03 Regression Plots/residual_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/03 Statistical Plots/03 Regression Plots/residual_plot.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/03 Statistical Plots/04 Matrix Plots/clustermap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/03 Statistical Plots/04 Matrix Plots/clustermap.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/03 Statistical Plots/04 Matrix Plots/heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/03 Statistical Plots/04 Matrix Plots/heatmap.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/03 Statistical Plots/05 Pair Plots/pairgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/03 Statistical Plots/05 Pair Plots/pairgrid.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/03 Statistical Plots/05 Pair Plots/pairplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/03 Statistical Plots/05 Pair Plots/pairplot.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/03 Statistical Plots/06 Joint Plots/jointgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/03 Statistical Plots/06 Joint Plots/jointgrid.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/03 Statistical Plots/06 Joint Plots/jointplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/03 Statistical Plots/06 Joint Plots/jointplot.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/04 Customization/01 Color Palettes/color_palettes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/04 Customization/01 Color Palettes/color_palettes.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/04 Customization/02 Axis Labels and Titles/axis_labels_and_titles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/04 Customization/02 Axis Labels and Titles/axis_labels_and_titles.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/04 Customization/03 Figure Size and Aspect Ratios/figure_size_and_aspect_ratios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/04 Customization/03 Figure Size and Aspect Ratios/figure_size_and_aspect_ratios.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/04 Customization/04 Customizing Plot Aesthetics/customizing_plot_aesthetics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/04 Customization/04 Customizing Plot Aesthetics/customizing_plot_aesthetics.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/04 Customization/05 Annotations and Text/annotations_and_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/04 Customization/05 Annotations and Text/annotations_and_text.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/04 Customization/06 Faceting with FacetGrid and catplot/faceting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/04 Customization/06 Faceting with FacetGrid and catplot/faceting.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/05 Multi-Plot Grids/01 FacetGrid for Multi-Faceted Plots/facetgrid_multi_faceted_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/05 Multi-Plot Grids/01 FacetGrid for Multi-Faceted Plots/facetgrid_multi_faceted_plots.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/05 Multi-Plot Grids/02 PairGrid for Pairwise Relationships/pairgrid_pairwise_relationships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/05 Multi-Plot Grids/02 PairGrid for Pairwise Relationships/pairgrid_pairwise_relationships.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/05 Multi-Plot Grids/03 Catplot for Categorical Faceting/catplot_categorical_faceting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/05 Multi-Plot Grids/03 Catplot for Categorical Faceting/catplot_categorical_faceting.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/05 Multi-Plot Grids/04 Combining Plots with Subplots/combining_plots_with_subplots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/05 Multi-Plot Grids/04 Combining Plots with Subplots/combining_plots_with_subplots.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/06 Advanced Visualizations/01 Time Series Visualization/time_series_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/06 Advanced Visualizations/01 Time Series Visualization/time_series_visualization.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/06 Advanced Visualizations/02 Customizing Plot Legends/customizing_plot_legends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/06 Advanced Visualizations/02 Customizing Plot Legends/customizing_plot_legends.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/06 Advanced Visualizations/03 Logarithmic Scales/logarithmic_scales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/06 Advanced Visualizations/03 Logarithmic Scales/logarithmic_scales.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/06 Advanced Visualizations/04 Combining Seaborn with Matplotlib/combining_seaborn_with_matplotlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/06 Advanced Visualizations/04 Combining Seaborn with Matplotlib/combining_seaborn_with_matplotlib.py -------------------------------------------------------------------------------- /Seaborn Fundamentals/06 Advanced Visualizations/05 Interactive Visualizations/interactive_visualizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Fundamentals/06 Advanced Visualizations/05 Interactive Visualizations/interactive_visualizations.py -------------------------------------------------------------------------------- /Seaborn Interview Questions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Seaborn-Interview-Preparation/HEAD/Seaborn Interview Questions/README.md --------------------------------------------------------------------------------