4c78a11e927205ed408dc37d5e2e492179c6b514,alpha.py,,pipeline,#Any#,64

Before Change


        split_point = X_train.shape[0]
        X = pd.concat([X_train, X_test])
    else:
        raise IndexError("The number of training and test columns must match.")

    // Log feature statistics

    logger.info("Original Feature Statistics")

After Change


        split_point = X_train.shape[0]
        X = pd.concat([X_train, X_test])
    else:
        raise IndexError("The number of training and test columns [%s, %s] must match.",
                         X_train.shape[1], X_test.shape[1])

    // Log feature statistics

    logger.info("Original Feature Statistics")
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 5

Non-data size: 4

Instances


Project Name: ScottfreeLLC/AlphaPy
Commit Name: 4c78a11e927205ed408dc37d5e2e492179c6b514
Time: 2016-08-07
Author: Mark.R.Conway@gmail.com
File Name: alpha.py
Class Name:
Method Name: pipeline


Project Name: brian-team/brian2
Commit Name: 086196a1b4d03de5ed21312d0792419c312d7a36
Time: 2013-07-26
Author: marcel.stimberg@ens.fr
File Name: brian2/core/specifiers.py
Class Name: VariableView
Method Name: __getitem__


Project Name: stellargraph/stellargraph
Commit Name: 6e7be4c247f55585f25fd0d8406d86e096b645e6
Time: 2018-09-05
Author: docherty@gmail.com
File Name: stellargraph/mapper/link_mappers.py
Class Name: NodeSequence
Method Name: __getitem__


Project Name: prody/ProDy
Commit Name: fa926b8278a3b635d929e0fe6c63ac2a8983a406
Time: 2012-12-15
Author: lordnapi@gmail.com
File Name: lib/prody/dynamics/nma.py
Class Name: NMA
Method Name: __getitem__


Project Name: brian-team/brian2
Commit Name: 086196a1b4d03de5ed21312d0792419c312d7a36
Time: 2013-07-26
Author: marcel.stimberg@ens.fr
File Name: brian2/core/specifiers.py
Class Name: VariableView
Method Name: __setitem__