Last active
August 29, 2015 14:06
-
-
Save wrobstory/f6db9d03a8f10f907018 to your computer and use it in GitHub Desktop.
Malort API
This file contains hidden or 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
stats = malort.run('mydir/files', delimiter='|') | |
redshift_suggestions = malort.get_redshift_types(stats) | |
df = malort.get_dataframe(stats) | |
# OR | |
result = malort.run('mydir/files', delimiter='|') | |
redshift_suggestions = result.get_redshift_types() | |
df = result.get_dataframe() | |
# Where result is an object |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment