We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7feccde + 3d8841b commit 9e58432Copy full SHA for 9e58432
CSV_file.py
@@ -0,0 +1,14 @@
1
+import pandas as pd
2
+
3
+# loading the dataset
4
5
+df= pd.read_csv(r"c:\PROJECT\Drug_Recommendation_System\drug_recommendation_system\Drugs_Review_Datasets.csv")
6
7
+print(df) #prints Dataset
8
+# funtions
9
+print(df.tail())
10
+print(df.head())
11
+print(df.info())
12
+print(df.describe())
13
+print(df.column)
14
+print(df.shape())
0 commit comments