From 472fadcec291806e90b717f8553e908f6b4c23f0 Mon Sep 17 00:00:00 2001 From: Ashwin <96196095+Ashwin-developer12@users.noreply.github.com> Date: Mon, 27 Mar 2023 14:29:59 +0530 Subject: [PATCH] Create plotting points using matplotlib --- plotting points using matplotlib | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 plotting points using matplotlib diff --git a/plotting points using matplotlib b/plotting points using matplotlib new file mode 100644 index 0000000..926f9f7 --- /dev/null +++ b/plotting points using matplotlib @@ -0,0 +1,8 @@ +import matplotlib.pyplot as plt +import pandas as pd +import numpy as np + +df = pd.DataFrame([1,2,3,4]) +df1 = pd.DataFrame([1,2,3,4]) +plt.scatter(df,df1) +plt.show()