forked from AutoViML/featurewiz
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
1,948 additions
and
3,059 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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# Contributing | ||
|
||
We welcome contributions from anyone beginner or advanced. Please before working on some feature | ||
|
||
* search through the past issues, your concern may have been raised by others in the past. Check through | ||
closed issues as well. | ||
* if there is no open issue for your feature request please open one up to coordinate all collaborators | ||
* write your feature | ||
* submit a pull request on this repo with: | ||
* a brief description | ||
* **detail of the expected change(s) in behaviour** | ||
* how to test it (if it's not obvious) | ||
|
||
Ask someone to test it. | ||
# Contributing | ||
|
||
We welcome contributions from anyone beginner or advanced. Please before working on some feature | ||
|
||
* search through the past issues, your concern may have been raised by others in the past. Check through | ||
closed issues as well. | ||
* if there is no open issue for your feature request please open one up to coordinate all collaborators | ||
* write your feature | ||
* submit a pull request on this repo with: | ||
* a brief description | ||
* **detail of the expected change(s) in behaviour** | ||
* how to test it (if it's not obvious) | ||
|
||
Ask someone to test it. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
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,23 +1,23 @@ | ||
# -*- coding: utf-8 -*- | ||
################################################################################ | ||
# featurewiz - fast feature selection using one line of code | ||
# Python v3.6+ | ||
# Created by Ram Seshadri | ||
# Licensed under Apache License v2 | ||
################################################################################ | ||
# Version | ||
from .__version__ import __version__ | ||
from .featurewiz import featurewiz, convert_all_object_columns_to_numeric | ||
from .featurewiz import split_one_field_into_many, add_aggregate_primitive_features | ||
from .featurewiz import create_time_series_features | ||
if __name__ == "__main__": | ||
version_number = __version__ | ||
print("""Running featurewiz version: %s. Call by using: | ||
features = featurewiz(dataname, target, corr_limit=0.70, | ||
verbose=2, sep=',', header=0)""" %version_number) | ||
else: | ||
version_number = __version__ | ||
print("""Imported featurewiz version: %s. Call by using: | ||
features = featurewiz(dataname, target, corr_limit=0.70, | ||
verbose=2, sep=',', header=0)""" %version_number) | ||
################################################################################ | ||
# -*- coding: utf-8 -*- | ||
################################################################################ | ||
# featurewiz - fast feature selection using one line of code | ||
# Python v3.6+ | ||
# Created by Ram Seshadri | ||
# Licensed under Apache License v2 | ||
################################################################################ | ||
# Version | ||
from .__version__ import __version__ | ||
from .featurewiz import featurewiz, convert_all_object_columns_to_numeric | ||
from .featurewiz import split_one_field_into_many, add_aggregate_primitive_features | ||
from .featurewiz import create_time_series_features | ||
if __name__ == "__main__": | ||
version_number = __version__ | ||
print("""Running featurewiz version: %s. Call by using: | ||
features = featurewiz(dataname, target, corr_limit=0.70, | ||
verbose=2, sep=',', header=0)""" %version_number) | ||
else: | ||
version_number = __version__ | ||
print("""Imported featurewiz version: %s. Call by using: | ||
features = featurewiz(dataname, target, corr_limit=0.70, | ||
verbose=2, sep=',', header=0)""" %version_number) | ||
################################################################################ |
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,10 +1,10 @@ | ||
# -*- coding: utf-8 -*- | ||
"""Specifies the version of the FeatureWiz package.""" | ||
|
||
__title__ = "featurewiz" | ||
__author__ = "Ram Seshadri" | ||
__description__ = "Fast Feature Selection for any data set, any size" | ||
__url__ = "https://github.com/Auto_ViML/featurewiz.git" | ||
__version__ = "0.0.7" | ||
__license__ = "Apache License 2.0" | ||
__copyright__ = "2020 Google" | ||
# -*- coding: utf-8 -*- | ||
"""Specifies the version of the FeatureWiz package.""" | ||
|
||
__title__ = "featurewiz" | ||
__author__ = "Ram Seshadri" | ||
__description__ = "Fast Feature Selection for any data set, any size" | ||
__url__ = "https://github.com/Auto_ViML/featurewiz.git" | ||
__version__ = "0.0.7" | ||
__license__ = "Apache License 2.0" | ||
__copyright__ = "2020 Google" |
Oops, something went wrong.