MCPcopy Create free account
hub / github.com/apache/arrow / test_float_no_nulls

Function test_float_no_nulls

python/pyarrow/tests/test_feather.py:173–183  ·  view source on GitHub ↗
(version)

Source from the content-addressed store, hash-verified

171
172@pytest.mark.pandas
173def test_float_no_nulls(version):
174 data = {}
175 numpy_dtypes = ['f4', 'f8']
176 num_values = 100
177
178 for dtype in numpy_dtypes:
179 values = np.random.randn(num_values)
180 data[dtype] = values.astype(dtype)
181
182 df = pd.DataFrame(data)
183 _check_pandas_roundtrip(df, version=version)
184
185
186@pytest.mark.pandas

Callers

nothing calls this directly

Calls 1

_check_pandas_roundtripFunction · 0.70

Tested by

no test coverage detected