New 1 - Data Science
3198 ワード
1. QQ-plot(Quantile Quantile plot)
(완전한 정규분포를 이룰 때)
(skewed가 있을 떄)
2. Pandas.DataFrame.apply()
3. Pandas.DataFrame.transform()
4.apply()とtransform()の違い
(写真の出所:https://towardsdatascience.com/difference-between-apply-and-transform-in-pandas-242e5cf32705)
1. transform() work with function, a string function, a list of functions, and a dict. However, apply() is only allowed with function.
2. transform() cannot produce aggregated results.
3. apply() works with multiple Series at a time. But, transform() is only allowed to work with a single Series at a time.
5. Pandas.DataFrame.astype()
6. Sklearn.pipeline()
7. cross_val_score()
8. Key differences GBM vs XGBOOST
Guide for XGBoost
9. BaseEstimator, RegressorMixin, TransformerMixin
1. BaseEstimator
2. TransformerMixin
3. RegressorMixin
あるKaggle Notebookで次のようなクラスが見られました.
複数のモデルを一度に学習し、予測平均値を返す機能があるようです.
このレベルもあります.
このように,平均modelsはrmsle cvという関数に入りcross val score()の推定因子として伝達される.
Reference
この問題について(New 1 - Data Science), 我々は、より多くの情報をここで見つけました https://velog.io/@aspalt85/New-1-Data-Scienceテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol