3227c2ed4ae92c6b9ecfc1b2c614ff4c36bd9fd0,lexos/processors/analyze/information.py,FileInformation,__init__,#FileInformation#,132

Before Change



        // 2 iqr analysis
        temp_list = sorted(list(word_list.items()), key=itemgetter(1))
        mid = temp_list[int(num_word / 2)][1]
        q3 = temp_list[int(num_word * 3 / 4)][1]
        q1 = temp_list[int(num_word / 4)][1]
        iqr = q3 - q1

        // pack the data

After Change


        // iqr = q3 - q1

        // 2 iqr analysis
        mid = np.median(word_list_values)
        q1 = np.percentile(word_list_values, 25)
        q3 = np.percentile(word_list_values, 75)

        // pack the data
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: WheatonCS/Lexos
Commit Name: 3227c2ed4ae92c6b9ecfc1b2c614ff4c36bd9fd0
Time: 2017-07-21
Author: weltch1997@gmail.com
File Name: lexos/processors/analyze/information.py
Class Name: FileInformation
Method Name: __init__


Project Name: WheatonCS/Lexos
Commit Name: 3227c2ed4ae92c6b9ecfc1b2c614ff4c36bd9fd0
Time: 2017-07-21
Author: weltch1997@gmail.com
File Name: lexos/processors/analyze/information.py
Class Name: FileInformation
Method Name: __init__


Project Name: librosa/librosa
Commit Name: b7c2f6e9ccd65a53d8ae9aa0d3ee287ce9c93019
Time: 2014-02-07
Author: brm2132@columbia.edu
File Name: librosa/feature.py
Class Name:
Method Name: estimate_tuning


Project Name: etal/cnvkit
Commit Name: e4d2308740b9e99a0b7313a31072684cb224d2b4
Time: 2016-08-24
Author: eric.talevich@gmail.com
File Name: cnvlib/smoothing.py
Class Name:
Method Name: rolling_median