We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c33f233 + 69ccb7a commit 53b4260Copy full SHA for 53b4260
1 file changed
dist/core/get_dummies.js
@@ -65,7 +65,7 @@ function get_dummy(kwargs = {}) {
65
66
if (!columns) {
67
columns = [];
68
- in_data.col_types.map((x, i) => {
+ in_data.col_types.forEach((x, i) => {
69
if (x == "string") {
70
let name_column = in_data.columns[i];
71
columns.push(name_column);
@@ -131,4 +131,4 @@ function get_dummy(kwargs = {}) {
131
}
132
133
const get_dummies = get_dummy;
134
-exports.get_dummies = get_dummies;
+exports.get_dummies = get_dummies;
0 commit comments