Initial commit: Masina-Dock Vehicle Management System
This commit is contained in:
commit
ae923e2c41
4999 changed files with 1607266 additions and 0 deletions
|
|
@ -0,0 +1,18 @@
|
|||
import numpy as np
|
||||
import pytest
|
||||
|
||||
from pandas import DataFrame
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def int_frame_const_col():
|
||||
"""
|
||||
Fixture for DataFrame of ints which are constant per column
|
||||
|
||||
Columns are ['A', 'B', 'C'], with values (per column): [1, 2, 3]
|
||||
"""
|
||||
df = DataFrame(
|
||||
np.tile(np.arange(3, dtype="int64"), 6).reshape(6, -1) + 1,
|
||||
columns=["A", "B", "C"],
|
||||
)
|
||||
return df
|
||||
Loading…
Add table
Add a link
Reference in a new issue