From 863132f62b72eb58d3b222d1863db643bda9dd30 Mon Sep 17 00:00:00 2001 From: Claire Hubbard <2bclaire.m@gmail.com> Date: Tue, 3 Oct 2023 14:56:11 +0000 Subject: [PATCH 1/3] New README and the two first fixes documented --- README | 1 + fix.txt | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 README diff --git a/README b/README new file mode 100644 index 00000000..29afdfaa --- /dev/null +++ b/README @@ -0,0 +1 @@ +My own README file diff --git a/fix.txt b/fix.txt index e69de29b..0f730626 100644 --- a/fix.txt +++ b/fix.txt @@ -0,0 +1,2 @@ +Fix #1 added -- You can safely remove this line -- +Fix #2 added -- You can safely remove this line -- From 56b2a439933a62b5bf96a31bdef383ed767da56f Mon Sep 17 00:00:00 2001 From: Claire Hubbard <2bclaire.m@gmail.com> Date: Tue, 3 Oct 2023 15:00:37 +0000 Subject: [PATCH 2/3] borrar fichero --- README | 1 - 1 file changed, 1 deletion(-) delete mode 100644 README diff --git a/README b/README deleted file mode 100644 index 29afdfaa..00000000 --- a/README +++ /dev/null @@ -1 +0,0 @@ -My own README file From 75f7e9dc99aaeaacd10dd39bad169bbba4a89699 Mon Sep 17 00:00:00 2001 From: clairemariehubbard <146745238+clairemariehubbard@users.noreply.github.com> Date: Sat, 3 Feb 2024 17:52:16 +0100 Subject: [PATCH 3/3] Add files via upload --- plot.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 plot.py diff --git a/plot.py b/plot.py new file mode 100644 index 00000000..cd462420 --- /dev/null +++ b/plot.py @@ -0,0 +1,17 @@ +# i want to do a histogram of the data radius_mean variable in breastcancer.csv + +import pandas as pd +import matplotlib.pyplot as plt + +# read the data +data = pd.read_csv('breastcancer.csv') +# plot the histogram +plt.hist(data['radius_mean'], bins=20, color='blue', edgecolor='black') +plt.title('Histogram of radius_mean') +plt.xlabel('Radius mean') +plt.ylabel('Frequency') +plt.show() + +# save the plot +plt.savefig('radius_mean_histogram.png') +