#
gpu-dataframe
Here are 3 public repositories matching this topic...
randyzwitch
commented
Mar 28, 2019
In trying to write tests for #189, I'm finding very difficult to add columns to existing tests, as in some cases like the all_types
table, the table is defined in a separate file than the tests and multiple tests try to write to the same table.
Additionally, our test suite doesn't prove that the data that are uploaded are the same as the data downloaded for all types.
We should consider m
1
Improve this page
Add a description, image, and links to the gpu-dataframe topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the gpu-dataframe topic, visit your repo's landing page and select "manage topics."
For pandas API compatibility, we can implement Series.autocorr.
autocorr
calculates the Pearson correlation between the Series and itself lagged by N steps. Conceptually, this is a combination ofshift
andcorr
.