Sergey

Results 8 comments of Sergey

so, any answers? :) is it possible to use it with table and with table-row slots like in vue-good-table (not with vue-good-table but with own similar table api)?

yep, but u can access it through git history. for some reason it was deleted in some commit xD here https://github.com/guipsamora/pandas_exercises/blob/28835cc1a0a19fb44d12236d190841269cf42b2b/09_Time_Series/Getting_Financial_Data/Exercises_with_solutions_and_code.ipynb

same. also crashes when i press disconnect button

https://mlcourse.ai/book/topic03/assignment03_decision_trees_solution.html line ``` plot_tree( dt, feature_names=df_train.columns, filled=True, class_names=["Won't go", "Will go"] ); ``` did throw an error cuz i provided an Index instead of a list so i was able...

is it should be like this? data_**test**[c].fillna(data_**train**[c].mode()[0], inplace=True) ``` # fill missing data for c in categorical_columns: data_train[c].fillna(data_train[c].mode()[0], inplace=True) data_test[c].fillna(data_train[c].mode()[0], inplace=True) for c in numerical_columns: data_train[c].fillna(data_train[c].median(), inplace=True) data_test[c].fillna(data_train[c].median(), inplace=True) ```

https://mlcourse.ai/book/topic06/topic6_feature_engineering_feature_selection.html#statistical-approaches - Statistical approaches section, `VarianceThreshold(0.7).fit_transform(x_data_generated).shape` and etc doesnt change the data shape

https://mlcourse.ai/book/topic08/assignment08_implement_sgd_regressor.html Linear regression and Stochastic Gradient Descent section ![image](https://github.com/Yorko/mlcourse.ai/assets/59411497/24b8ad43-0f05-4b56-af5f-379cbbce1349)

https://mlcourse.ai/book/topic09/assignment09_time_series.html downloads an html file every time i refresh the page o_o