Size: 270
Comment: Initial commit
|
← Revision 3 as of 2024-01-15 21:18:21 ⇥
Size: 300
Comment: Added link
|
Deletions are marked like this. | Additions are marked like this. |
Line 23: | Line 23: |
== Types == | == Syntax == |
Line 25: | Line 25: |
* [[Python/Pandas/Series|pandas.Series]] | * [[Python/Pandas/FileIO|File I/O]] * [[Python/Pandas/Types|Types]] |
Python Pandas
Contents
Example
import pandas as pd s = pd.Series([10, 20, 30]) mu = s.mean() sigma = s.std()