diff --git a/contrib/pandas/Introduction_to_Pandas_Library_and_DataFrames.md b/contrib/pandas/Introduction_to_Pandas_Library_and_DataFrames.md index 5e7dcd3..809a155 100644 --- a/contrib/pandas/Introduction_to_Pandas_Library_and_DataFrames.md +++ b/contrib/pandas/Introduction_to_Pandas_Library_and_DataFrames.md @@ -112,24 +112,6 @@ cars_with_colours = pd.DataFrame({"Cars" : ["BMW","Audi","Thar","Honda"], "Colour" : ["Black","White","Red","Green"]}) cars_with_colours ``` - - - - -
- @@ -214,24 +196,6 @@ record = pd.DataFrame({"Student_Name":students , "Age" :age}) record ``` - - - - -
-
@@ -307,24 +271,6 @@ record.dtypes ```python record.describe() # It only display the results for numeric data ``` - - - - -
-