-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Difficulty getting access to latest get_rejected_variables()
functionality
#11
Comments
That functionality is not committed to PyPi yet. Will do so over the weekend. The zipped egg should contain the mplstyle file. I will look into it and try to recreate... stay tuned... |
Greetings! Great project concept Is this complete yet? All other pandas_profiling functionality seems to work for me. replicate: ufo = pd.read_table('http://bit.ly/uforeports', sep=',', parse_dates=['Time']) |
Instead of throwing an error check if the correlation was computed. If not returns an empty list. This is a fix for #11.
The bug has been fixed by @conradoqg and merged on the master branch. |
Instead of throwing an error check if the correlation was computed. If not returns an empty list. This is a fix for #11.
I installed
pandas-profiling
using:pip install pandas-profiling
This gave me
pandas-profiling 1.0.0a2
, but the corresponding__init__.py
file did not contain theget_rejected_variables()
functionality.I then cloned the
git
repo, and tried to install using:python setup.py install
This gave me the zipped egg file in
~/anaconda3/envs/python2/lib/python2.7/site-packages
, and I got an error that python could not findpandas_profiling.mplstyle
because thepandas_profiling
directory did not exist.Finally, I extracted the egg file and move
pandas_profiling
into~/anaconda3/envs/python2/lib/python2.7/site-packages
, and got the new functionality.Might be something I missed. Just letting you know.
The text was updated successfully, but these errors were encountered: