gwastro/gwin

View on GitHub

Showing 41 of 121 total issues

Function copy has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

def copy(self, other, parameters=None, parameter_names=None,
posterior_only=False, **kwargs):
"""Copies data in this file to another file.
 
The samples and stats to copy may be down selected using the given
Severity: Minor
Found in gwin/io/hdf.py - About 1 hr to fix

Function compute_acfs has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

def compute_acfs(cls, fp, start_index=None, end_index=None,
per_walker=False, walkers=None, parameters=None):
"""Computes the autocorrleation function of the model params in the
given file.
 
 
Severity: Minor
Found in gwin/sampler/base.py - About 1 hr to fix

Function run has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

def run(self, niterations):
"""This function should run the sampler.
"""
 
if not self._lastsample:
Severity: Minor
Found in gwin/sampler/mcmc.py - About 1 hr to fix

Function test_create_axes_grid has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

def test_create_axes_grid(nodiag):
parameters = ['mass1', 'mass2', 'tc']
if nodiag:
combinations = itertools.combinations
ndim = len(parameters) - 1
Severity: Minor
Found in test/test_results.py - About 55 mins to fix

Function _read_fields has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

def _read_fields(fp, fields_group, fields, array_class,
thin_start=None, thin_interval=None, thin_end=None,
iteration=None, walkers=None, flatten=True):
"""Base function for reading samples and model stats. See
`read_samples` and `read_model_stats` for details.
Severity: Minor
Found in gwin/sampler/base.py - About 55 mins to fix

Function gelman_rubin has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

def gelman_rubin(chains, auto_burn_in=True):
""" Calculates the univariate Gelman-Rubin convergence statistic
which compares the evolution of multiple chains in a Markov-Chain Monte
Carlo process and computes their difference to determine their convergence.
The between-chain and within-chain variances are computed for each sampling
Severity: Minor
Found in gwin/gelman_rubin.py - About 55 mins to fix

Function prior_eval has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

def prior_eval(self):
""" Returns the joint distribution class initialized with a set of
pre-defined distributions for each parameters.
"""
parameters, values = zip(*self.parameters.items())
Severity: Minor
Found in test/test_sampler.py - About 55 mins to fix

Function create_marginalized_hist has 13 arguments (exceeds 10 allowed). Consider refactoring.
Open

def create_marginalized_hist(ax, values, label, percentiles=None,
Severity: Major
Found in gwin/results/scatter_histograms.py - About 50 mins to fix

    Function get_slice has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

    def get_slice(self, thin_start=None, thin_interval=None, thin_end=None):
    """Formats a slice using the given arguments that can be used to
    retrieve a thinned array from an InferenceFile.
     
    Parameters
    Severity: Minor
    Found in gwin/io/hdf.py - About 45 mins to fix

    Function __init__ has 12 arguments (exceeds 10 allowed). Consider refactoring.
    Open

    def __init__(self, variable_params, data, waveform_generator,
    Severity: Major
    Found in gwin/models/marginalized_gaussian_noise.py - About 45 mins to fix

      Function set_marginal_histogram_title has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

      def set_marginal_histogram_title(ax, fmt, color, label=None, rotated=False):
      """ Sets the title of the marginal histograms.
       
      Parameters
      ----------
      Severity: Minor
      Found in gwin/results/scatter_histograms.py - About 45 mins to fix

      Function remove_common_offset has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

      def remove_common_offset(arr):
      """Given an array of data, removes a common offset > 1000, returning the
      removed value.
      """
      offset = 0
      Severity: Minor
      Found in gwin/results/scatter_histograms.py - About 45 mins to fix

      Function read_samples has 11 arguments (exceeds 10 allowed). Consider refactoring.
      Open

      def read_samples(cls, fp, parameters,
      Severity: Major
      Found in gwin/sampler/emcee.py - About 35 mins to fix

        Function read_label has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

        def read_label(self, parameter, error_on_none=False):
        """Returns the label for the parameter.
         
        Parameters
        -----------
        Severity: Minor
        Found in gwin/io/hdf.py - About 35 mins to fix

        Function __init__ has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

        def __init__(self, variable_params, data, waveform_generator,
        f_lower, psds=None, f_upper=None, norm=None,
        **kwargs):
        # set up the boiler-plate attributes; note: we'll compute the
        # log evidence later
        Severity: Minor
        Found in gwin/models/gaussian_noise.py - About 35 mins to fix

        Function write_data has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

        def write_data(self, strain_dict=None, stilde_dict=None,
        psd_dict=None, low_frequency_cutoff_dict=None,
        group=None):
        """Writes the strain/stilde/psd.
         
         
        Severity: Minor
        Found in gwin/io/hdf.py - About 35 mins to fix

        Function compute_acls has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

        def compute_acls(cls, fp, start_index=None, end_index=None):
        """Computes the autocorrleation length for all model params and
        temperatures in the given file.
         
        Parameter values are averaged over all walkers at each iteration and
        Severity: Minor
        Found in gwin/sampler/emcee.py - About 35 mins to fix

        Function get_file_type has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        def get_file_type(filename):
        """ Returns I/O object to use for file.
         
        Parameters
        ----------
        Severity: Minor
        Found in gwin/option_utils.py - About 25 mins to fix

        Function injections_from_cli has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        def injections_from_cli(opts):
        """Gets injection parameters from the inference file(s).
         
        Parameters
        ----------
        Severity: Minor
        Found in gwin/option_utils.py - About 25 mins to fix

        Function from_config has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        def from_config(cls, cp, data, delta_f=None, delta_t=None,
        gates=None, recalibration=None, **kwargs):
        """Initializes an instance of this class from the given config file.
         
        Parameters
        Severity: Minor
        Found in gwin/models/marginalized_gaussian_noise.py - About 25 mins to fix
        Severity
        Category
        Status
        Source
        Language