You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+55
Original file line number
Diff line number
Diff line change
@@ -75,6 +75,61 @@ Pandas have two core data structure components, and all operations are based on
75
75
[Pandas Cheat Sheet for Data Science in Python.pdf](https://github.com/milaan9/10_Python_Pandas_Module/blob/main/Pandas%20Cheat%20Sheet%20for%20Data%20Science%20in%20Python.pdf)
76
76
77
77
78
+
## Main Features
79
+
Here are just a few of the things that pandas does well:
80
+
81
+
- Easy handling of [**missing data**][missing-data] (represented as
82
+
`NaN`) in floating point as well as non-floating point data
83
+
- Size mutability: columns can be [**inserted and
84
+
deleted**][insertion-deletion] from DataFrame and higher dimensional
85
+
objects
86
+
- Automatic and explicit [**data alignment**][alignment]: objects can
87
+
be explicitly aligned to a set of labels, or the user can simply
88
+
ignore the labels and let `Series`, `DataFrame`, etc. automatically
89
+
align the data for you in computations
90
+
- Powerful, flexible [**group by**][groupby] functionality to perform
91
+
split-apply-combine operations on data sets, for both aggregating
92
+
and transforming data
93
+
- Make it [**easy to convert**][conversion] ragged,
94
+
differently-indexed data in other Python and NumPy data structures
0 commit comments