Analysis tools for machine learning projects
Project description
Analysis tools for Machine learning projects
1. Usage
$ pip install analysis-tools
2. Tutorial
examples/titanic/eda.ipynb를 참고
from analysis_tools import eda, metrics
data = pd.DataFrame(..)
target = 'survived'
num_features = ['age', 'sibsp', 'parch', 'fare']
cat_features = data.columns.drop(num_features)
data[num_features] = data[num_features].astype('float32')
data[cat_features] = data[cat_features].astype('string')
eda.plot_missing_value(data)
eda.plot_features(data)
eda.plot_features_target(data, target)
eda.plot_corr(data.corr())
metrics.get_feature_importance(data, target)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
analysis-tools-0.2.1.tar.gz
(15.4 kB
view hashes)
Built Distribution
Close
Hashes for analysis_tools-0.2.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1399bb961ca97abd273d5801f3621c478f31234cbb6e1d7eef95091f0baa0e8c |
|
MD5 | ec2d8845f2157a70a74acdaa2f5c0fbf |
|
BLAKE2b-256 | 5af1ee9f59975a8b8058da7ee89b6c3d427098919dfcdc1cec004a689814c46c |