-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: minimal spark deployment (#1132)
* Initial commit of spark-branch with all packed logic/tests in semi-working state
- Loading branch information
1 parent
a105d32
commit 4113389
Showing
39 changed files
with
1,935 additions
and
49 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
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# this provides the recommended pyspark and pyarrow versions for spark to work on pandas-profiling | ||
# note that if you are using pyspark 2.3 or 2.4 and pyarrow >= 0.15, you might need to | ||
# set ARROW_PRE_0_15_IPC_FORMAT=1 in your conf/spark-env.sh for toPandas functions to work properly | ||
pyspark>=2.3.0 | ||
pyarrow>=2.0.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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ pytest | |
coverage~=6.5 | ||
codecov | ||
pytest-cov | ||
pytest-spark | ||
nbval | ||
pyarrow | ||
twine>=3.1.1 | ||
|
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
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
from pandas_profiling.model.spark import ( | ||
correlations_spark, | ||
dataframe_spark, | ||
describe_boolean_spark, | ||
describe_categorical_spark, | ||
describe_counts_spark, | ||
describe_date_spark, | ||
describe_generic_spark, | ||
describe_numeric_spark, | ||
describe_supported_spark, | ||
duplicates_spark, | ||
missing_spark, | ||
sample_spark, | ||
summary_spark, | ||
table_spark, | ||
) | ||
|
||
__all__ = [ | ||
"correlations_spark", | ||
"dataframe_spark", | ||
"describe_boolean_spark", | ||
"describe_categorical_spark", | ||
"describe_counts_spark", | ||
"describe_date_spark", | ||
"describe_generic_spark", | ||
"describe_numeric_spark", | ||
"describe_supported_spark", | ||
"duplicates_spark", | ||
"missing_spark", | ||
"sample_spark", | ||
"sample_spark", | ||
"summary_spark", | ||
"table_spark", | ||
] |
Oops, something went wrong.