Giter Site home page Giter Site logo

Comments (4)

rraadd88 avatar rraadd88 commented on September 25, 2024

Update on avoiding the warning. The warnings can be ignored as below.

import warnings
warnings.filterwarnings("ignore", category=RuntimeWarning) 

This is helpful when coding a (unbreakable) for loop.

However, I am still not sure the reason why such warnings are given out in the first place.

from unidip.

tompollard avatar tompollard commented on September 25, 2024

@rraadd88 please could you post an example of an input that generates this error?

from unidip.

rraadd88 avatar rraadd88 commented on September 25, 2024

Hi @tompollard ,
Here's a table with example input that produced the warnings: dip_test.txt

Demo code:

import pandas as pd
df=pd.read_table('dip_test.txt')
import unidip.dip as dip
dip.diptst(df['col1'])

Output:

python3.6/site-packages/unidip/dip.py:27: RuntimeWarning: divide by zero encountered in true_divide
  slopes = (work_cdf[1:] - work_cdf[0]) / distances
python3.6/site-packages/unidip/dip.py:30: RuntimeWarning: invalid value encountered in multiply
  gcm.extend(work_cdf[0] + distances[:minslope_idx] * minslope)
---------------------------------------------------------------------------
IndexError                                Traceback (most recent call last)
<ipython-input-23-27275520ec3c> in <module>
      1 import unidip.dip as dip
----> 2 dip.diptst(df['col1'])

python3.6/site-packages/unidip/dip.py in diptst(dat, is_hist, numt)
     45     """ diptest with pval """
     46     # sample dip
---> 47     d, (_, idxs, left, _, right, _) = dip_fn(dat, is_hist)
     48 
     49     # simulate from null uniform

python3.6/site-packages/unidip/dip.py in dip_fn(dat, is_hist, just_dip)
    106             d = d_right
    107         else:
--> 108             xl = left_touchpoints[d_left == left_diffs][0]
    109             xr = right_touchpoints[right_touchpoints >= xl][0]
    110             d = d_left

IndexError: index 0 is out of bounds for axis 0 with size 0

Thanks for the reply!

from unidip.

collinleiber avatar collinleiber commented on September 25, 2024

I had the same issue with the dip test.
For me the problem was related to the precision of the idxs array.
Within the _lcm_ method the subtraction
idxs.max() - idxs[::-1]
led to the creation of new duplicates.

This resulted in distances of 0 in the _gcm_ method and caused the divison by 0.

I fixed this by replacing
counts = collections.Counter(X)
idxs = np.msort(list(counts.keys()))
histogram = np.array([counts[i] for i in idxs])

with
X = np.around(X, 15)
idxs, histogram = np.unique(X, return_counts=True).

Not the most elegant solution but it seems to work.

Btw.: This also fixed issue #2 because the "divide by zero" (only a warning) leads to an empty array which later causes an array out of bounds error.

from unidip.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.