-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ArrowDataFrame and DataFrame test suites (#17)
* dask repartition * update docs * update * refactor extensions * add cotransform * fix lint * update * update * test spark * update * update * update * update * update * update * update * update * update * update * update * update * update * update * update * update * update * add spark * fix 3.8 * fix 3.8 * add spark support * remove modin * remove modin * update * improve repartition * improve test coverage * update file system * arrow dataframe and test suite * fix pandas df name * add IO * update version
- Loading branch information
Han Wang
authored
May 29, 2020
1 parent
9ec44b2
commit fa8bbb2
Showing
62 changed files
with
2,021 additions
and
857 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -136,3 +136,6 @@ tmp | |
|
||
# dask | ||
dask-worker-space | ||
|
||
# spark | ||
spark-warehourse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.1.7" | ||
__version__ = "0.2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
# flake8: noqa | ||
from fugue.dataframe.array_dataframe import ArrayDataFrame | ||
from fugue.dataframe.dataframe import DataFrame, LocalDataFrame, LocalBoundedDataFrame | ||
from fugue.dataframe.arrow_dataframe import ArrowDataFrame | ||
from fugue.dataframe.dataframe import DataFrame, LocalBoundedDataFrame, LocalDataFrame | ||
from fugue.dataframe.dataframes import DataFrames | ||
from fugue.dataframe.iterable_dataframe import IterableDataFrame | ||
from fugue.dataframe.pandas_dataframes import PandasDataFrame | ||
from fugue.dataframe.utils import to_local_df, to_local_bounded_df | ||
from fugue.dataframe.pandas_dataframe import PandasDataFrame | ||
from fugue.dataframe.utils import to_local_bounded_df, to_local_df |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.