python pandas Series

 import numpy as np

In [5]:
In [6]:
Out[6]:
a    4
b    7
a   -5
d    1
dtype: int64
In [7]:
Out[7]:
Index(['a', 'b', 'a', 'd'], dtype='object')
In [8]:
Out[8]:
array([ 4,  7, -5,  1])
In [10]:
Out[10]:
7
In [14]:
Out[14]:
a      4
b      7
a     -5
d    100
dtype: int64
In [15]:
Out[15]:
a     12
b     21
a    -15
d    300
dtype: int64
In [16]:
Out[16]:
a     True
b     True
a    False
d     True
dtype: bool
In [17]:
Out[17]:
a      4
b      7
d    100
dtype: int64
In [18]:
Out[18]:
a   -0.653644
b    0.753902
a    0.283662
d    0.862319
dtype: float64
In [19]:
Out[19]:
{'name': 'lee', 'age': 30, 'height': 180}

0 댓글