Skip to content

Commit 4b36920

Browse files
committed
- added warning to examples: # NOTE BorutaPy accepts numpy arrays onle, hence .values
- renamed boruta_py2 to boruta_py_plus
1 parent 7d37f66 commit 4b36920

File tree

3 files changed

+475
-2
lines changed

3 files changed

+475
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ __verbose__ : int, default=0
180180
from boruta_py import boruta_py
181181

182182
# load X and y
183-
# NOTE! BorutaPy accepts numpy arrays only, hence .values
183+
# NOTE BorutaPy accepts numpy arrays only, hence .values
184184
X = pd.read_csv('my_X_table.csv', index_col=0).values
185185
y = pd.read_csv('my_y_vector.csv', index_col=0).values
186186

boruta/boruta_py.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ class BorutaPy(object):
127127
from boruta_py import boruta_py
128128
129129
# load X and y
130-
# NOTE! BorutaPy accepts numpy arrays onle, hence .values
130+
# NOTE BorutaPy accepts numpy arrays onle, hence .values
131131
X = pd.read_csv('my_X_table.csv', index_col=0).values
132132
y = pd.read_csv('my_y_vector.csv', index_col=0).values
133133

0 commit comments

Comments
 (0)