4d0483edd1468855df714f77bca1a0a93f01cbce,docs/api/features/pca.py,,,#,16

Before Change


if __name__ == "__main__":

    // Load the credit data set
    data = pd.read_csv("../../../examples/data/credit/credit.csv")

    // Specify the features of interest
    features = [
            "limit", "sex", "edu", "married", "age", "apr_delay", "may_delay",
            "jun_delay", "jul_delay", "aug_delay", "sep_delay", "apr_bill", "may_bill",
            "jun_bill", "jul_bill", "aug_bill", "sep_bill", "apr_pay", "may_pay", "jun_pay",
            "jul_pay", "aug_pay", "sep_pay",
        ]

    // Extract the numpy arrays from the data frame
    X = data[features].as_matrix()
    y = data.default.as_matrix()

    // Instantiate the visualizer
    pca(X, y, "images/pca_projection_2d.png", scale=True, center=False, col=y)

After Change


if __name__ == "__main__":

    // Draw PCA with credit data set
    X, y = load_credit()
    colors = np.array(["r" if yi else "b" for yi in y])
    pca(X, y, "images/pca_projection_2d.png", scale=True, color=colors)
    pca(X, y, "images/pca_projection_3d.png", scale=True, color=colors, proj_dim=3)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: DistrictDataLabs/yellowbrick
Commit Name: 4d0483edd1468855df714f77bca1a0a93f01cbce
Time: 2018-06-18
Author: benjamin@bengfort.com
File Name: docs/api/features/pca.py
Class Name:
Method Name:


Project Name: DistrictDataLabs/yellowbrick
Commit Name: f25f858caeb07cb999e4088236b56bc5353b17bf
Time: 2019-08-02
Author: Kautumn06@users.noreply.github.com
File Name: docs/api/features/rfecv.py
Class Name:
Method Name: rfecv_credit_example


Project Name: dirty-cat/dirty_cat
Commit Name: 3a930d80c904c7d2954f353497aca45acf8a806c
Time: 2020-05-14
Author: twsthomas@gmail.com
File Name: examples/02_fit_predict_plot_employee_salaries.py
Class Name:
Method Name: