File: collections-api.rst

package info (click to toggle)
python-streamz 0.6.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 824 kB
  • sloc: python: 6,714; makefile: 18; sh: 18
file content (124 lines) | stat: -rw-r--r-- 1,775 bytes parent folder | download | duplicates (3)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
Collections API
===============

Collections
-----------

.. currentmodule:: streamz.collection

.. autosummary::
   Streaming
   Streaming.map_partitions
   Streaming.accumulate_partitions
   Streaming.verify

Batch
-----

.. currentmodule:: streamz.batch

.. autosummary::
   Batch
   Batch.filter
   Batch.map
   Batch.pluck
   Batch.to_dataframe
   Batch.to_stream

Dataframes
----------

.. currentmodule:: streamz.dataframe

.. autosummary::
   DataFrame
   DataFrame.groupby
   DataFrame.rolling
   DataFrame.assign
   DataFrame.sum
   DataFrame.mean
   DataFrame.cumsum
   DataFrame.cumprod
   DataFrame.cummin
   DataFrame.cummax

.. autosummary::
   GroupBy
   GroupBy.count
   GroupBy.mean
   GroupBy.size
   GroupBy.std
   GroupBy.sum
   GroupBy.var

.. autosummary::
   Rolling
   Rolling.aggregate
   Rolling.count
   Rolling.max
   Rolling.mean
   Rolling.median
   Rolling.min
   Rolling.quantile
   Rolling.std
   Rolling.sum
   Rolling.var

.. autosummary::
   DataFrame.window
   Window.apply
   Window.count
   Window.groupby
   Window.sum
   Window.size
   Window.std
   Window.var

.. autosummary::
   Rolling.aggregate
   Rolling.count
   Rolling.max
   Rolling.mean
   Rolling.median
   Rolling.min
   Rolling.quantile
   Rolling.std
   Rolling.sum
   Rolling.var

.. autosummary::
   PeriodicDataFrame

.. autosummary::
   Random

Details
-------

.. currentmodule:: streamz.collection

.. autoclass:: Streaming
   :members:

.. currentmodule:: streamz.batch

.. autoclass:: Batch
   :members:
   :inherited-members:

.. currentmodule:: streamz.dataframe

.. autoclass:: DataFrame
   :members:
   :inherited-members:

.. autoclass:: Rolling
   :members:

.. autoclass:: Window
   :members:

.. autoclass:: GroupBy
   :members:

.. autoclass:: Random