import os import matplotlib.pyplot as plt import pandas as pd import plots.plot_fossil_fuel_industry as plot_fossil_fuel_industry import plots.plot_government as plot_government import plots.plot_experience as plot_experience import plots.plot_categories as plot_categories import plots.plot_missing_participants as plot_missing_participants import plots.plot_gender_rate as plot_gender_rate import plots.plot_delegation_sizes as plot_delegation_sizes import plots.plot_overall_experience_distr as plot_overall_experience_distr import plots.plot_delegation_exp as plot_delegation_exp import plots.plot_intervention_distr as plot_intervention_distr plot_experience.plot("../results/complete_dataset_experience-def.csv") plot_government.plot("../results/complete_dataset.csv") plot_intervention_distr.plot("../data/data_regression/dataset_interventions.csv") plot_fossil_fuel_industry.plot("../results/complete_dataset.csv") plot_missing_participants.plot("../results/participants-csv/participants_cop") plot_delegation_exp.plot("../results/complete_dataset_experience-def.csv") plot_overall_experience_distr.plot("../results/complete_dataset_experience-2.csv") plot_categories.plot("../results/participants-csv/participants_cop") plot_gender_rate.plot("../results/complete_dataset.csv") plot_delegation_sizes.plot("../results/complete_dataset.csv")