From 7f61392a7cbb5d412d2d8016c7ef12a4276a433d Mon Sep 17 00:00:00 2001 From: PoojaTatkare Date: Thu, 4 Oct 2018 22:03:23 +0000 Subject: [PATCH 1/4] Done --- q01_plot_deliveries_by_team/build.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/q01_plot_deliveries_by_team/build.py b/q01_plot_deliveries_by_team/build.py index d1dab11..8d192e9 100644 --- a/q01_plot_deliveries_by_team/build.py +++ b/q01_plot_deliveries_by_team/build.py @@ -1,3 +1,4 @@ +# %load q01_plot_deliveries_by_team/build.py import pandas as pd import numpy as np import matplotlib.pyplot as plt @@ -7,3 +8,14 @@ # Solution +def plot_deliveries_by_team(): + plt.figure() + plt.plot(ipl_df.index,ipl_df) + plt.bar(ipl_df.index, ipl_df) + plt.xtrics(rotation=30) + plt.show() + + +plot_deliveries_by_team() + + From 700e8b6d60affdcfc1fb1770a36ad745cffd36ff Mon Sep 17 00:00:00 2001 From: PoojaTatkare Date: Thu, 4 Oct 2018 22:07:31 +0000 Subject: [PATCH 2/4] Done --- q02_plot_matches_by_team/build.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/q02_plot_matches_by_team/build.py b/q02_plot_matches_by_team/build.py index ce53182..589d0ac 100644 --- a/q02_plot_matches_by_team/build.py +++ b/q02_plot_matches_by_team/build.py @@ -1,3 +1,4 @@ +# %load q02_plot_matches_by_team/build.py import pandas as pd import numpy as np import matplotlib.pyplot as plt @@ -6,3 +7,7 @@ # Solution + + + + From a881fa6bc51e949905a552cebcc12e28435fdcf6 Mon Sep 17 00:00:00 2001 From: PoojaTatkare Date: Sun, 4 Nov 2018 10:19:23 +0000 Subject: [PATCH 3/4] Done --- q04_plot_runs_by_balls/build.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/q04_plot_runs_by_balls/build.py b/q04_plot_runs_by_balls/build.py index ce53182..4048eb8 100644 --- a/q04_plot_runs_by_balls/build.py +++ b/q04_plot_runs_by_balls/build.py @@ -1,3 +1,4 @@ +# %load q04_plot_runs_by_balls/build.py import pandas as pd import numpy as np import matplotlib.pyplot as plt @@ -6,3 +7,6 @@ # Solution + + + From c62159a37d4e3fe2cb2640b45edb32d7fa40b2cd Mon Sep 17 00:00:00 2001 From: PoojaTatkare Date: Thu, 3 Jan 2019 11:27:41 +0000 Subject: [PATCH 4/4] Done --- q03_plot_innings_runs_histogram/build.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/q03_plot_innings_runs_histogram/build.py b/q03_plot_innings_runs_histogram/build.py index ce53182..7b77baa 100644 --- a/q03_plot_innings_runs_histogram/build.py +++ b/q03_plot_innings_runs_histogram/build.py @@ -1,3 +1,4 @@ +# %load q03_plot_innings_runs_histogram/build.py import pandas as pd import numpy as np import matplotlib.pyplot as plt @@ -6,3 +7,6 @@ # Solution + + +