Alex Boyko
Results
2
issues of
Alex Boyko
According to documentation, parameter _dtype_ should "**Force** this dtype for the carray (rather than the array one)". Let's consider following: ```python arr = np.arange(20).reshape((4, 5)) # dtype of array is...
Let's consider following case: ```python date_range = pd.date_range(start='2017-01-01', end='2017-01-03', freq='D') cols = ['A', 'B', 'C', 'D', 'E'] df = pd.DataFrame(index=date_range, data=np.random.rand(len(date_range), len(cols)), columns=cols) df ``` | A | B |...