Differences between revisions 1 and 2
Revision 1 as of 2024-01-15 20:54:06
Size: 270
Comment: Initial commit
Revision 2 as of 2024-01-15 21:02:46
Size: 262
Comment: Generalized types under syntax section
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/Types|Types]]

Python Pandas


Example

import pandas as pd

s = pd.Series([10, 20, 30])
mu = s.mean()
sigma = s.std()


Syntax


CategoryRicottone

Python/Pandas (last edited 2024-01-15 21:18:21 by DominicRicottone)