mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
10 lines
137 B
Python
10 lines
137 B
Python
import numpy as np
|
|
import pandas as pd
|
|
|
|
nd = np.arange(1000)
|
|
|
|
s = pd.Series(name='foo', data=nd)
|
|
|
|
df = pd.DataFrame({'bar': nd})
|
|
|
|
df.size |