Skip to content
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

feature: Limite de quantas colunas aparece na comparação entre antes … #153

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tasks/robust-scaler/Experiment.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@
" new_sample = df[columns[numerical_indexes]].iloc[number-1:number].values.tolist()[0]\n",
" old_sample = pd.read_csv(dataset)[columns[numerical_indexes]].iloc[number-1:number].values.tolist()[0]\n",
" \n",
" for i in range(len(columns[numerical_indexes])):\n",
" for i in range(len(columns[numerical_indexes][:10])):\n",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Creio que seria mais interessante se essa limitação não estivesse fixa. O que acha de deixar isso como uma váriavel para o usuário escolher? E caso ele não altere o parâmetro, deixar esse como default ou mostrar todos mesmo.

@Grazy76 o que acharia melhor?

" new_df.loc[len(new_df)] = [columns[numerical_indexes][i], old_sample[i], new_sample[i], featuretypes[numerical_indexes][i]]\n",
" \n",
" return new_df\n",
Expand Down