MCPcopy
hub / github.com/pandas-dev/pandas / _create_series

Function _create_series

pandas/conftest.py:835–839  ·  view source on GitHub ↗

Helper for the _series dict

(index)

Source from the content-addressed store, hash-verified

833
834
835def _create_series(index):
836 """Helper for the _series dict"""
837 size = len(index)
838 data = np.random.default_rng(2).standard_normal(size)
839 return Series(data, index=index, name="a", copy=False)
840
841
842_series = {

Callers 2

conftest.pyFile · 0.70
series_with_simple_indexFunction · 0.70

Calls 1

SeriesClass · 0.90

Tested by

no test coverage detected