From 3d8841b545db0f8fe14de0b45a39ba0876f7d9df Mon Sep 17 00:00:00 2001 From: Abhilash Date: Mon, 12 May 2025 12:33:24 +0530 Subject: [PATCH] added basic csv reading script by using python --- CSV_file.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 CSV_file.py diff --git a/CSV_file.py b/CSV_file.py new file mode 100644 index 00000000000..d67e23064c4 --- /dev/null +++ b/CSV_file.py @@ -0,0 +1,14 @@ +import pandas as pd + +# loading the dataset + +df= pd.read_csv(r"c:\PROJECT\Drug_Recommendation_System\drug_recommendation_system\Drugs_Review_Datasets.csv") + +print(df) #prints Dataset +# funtions +print(df.tail()) +print(df.head()) +print(df.info()) +print(df.describe()) +print(df.column) +print(df.shape()) \ No newline at end of file