forked from pandas-dev/pandas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
timeseries.py
56 lines (40 loc) · 1.66 KB
/
timeseries.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from vbench.api import Benchmark
from datetime import datetime
common_setup = """from pandas_vb_common import *
N = 100000
try:
rng = date_range('1/1/2000', periods=N, freq='min')
except NameError:
rng = DateRange('1/1/2000', periods=N, offset=datetools.Minute())
ts = Series(np.random.randn(N), index=rng)
"""
#----------------------------------------------------------------------
# Test slice minutely series
timeseries_slice_minutely = Benchmark('ts[:10000]', common_setup)
#----------------------------------------------------------------------
# Test conversion
setup = common_setup + """
"""
timeseries_1min_5min_ohlc = Benchmark("ts[:10000].convert('5min', how='ohlc')",
common_setup)
timeseries_1min_5min_mean = Benchmark("ts[:10000].convert('5min', how='mean')",
common_setup)
#----------------------------------------------------------------------
# Irregular alignment
setup = common_setup + """
lindex = np.random.permutation(N)[:N // 2]
rindex = np.random.permutation(N)[:N // 2]
left = Series(ts.values.take(lindex), index=ts.index.take(lindex))
right = Series(ts.values.take(rindex), index=ts.index.take(rindex))
"""
timeseries_add_irregular = Benchmark('left + right', setup)
#----------------------------------------------------------------------
# Sort large irregular time series
setup = common_setup + """
N = 100000
rng = date_range('1/1/2000', periods=N, freq='s')
rng = rng.take(np.random.permutation(N))
ts = Series(np.random.randn(N), index=rng)
"""
timeseries_sort_index = Benchmark('ts.sort_index()', setup,
start_date=datetime(2011, 11, 1))