GithubHelp home page GithubHelp logo

Calculating lognormal fit about powerlaw HOT 1 CLOSED

kc-li avatar kc-li commented on July 22, 2024
Calculating lognormal fit

from powerlaw.

Comments (1)

jeffalstott avatar jeffalstott commented on July 22, 2024

distribution_fit is ancient, unadvertised code that really shouldn't be used, and is evidently buggy. I'm surprised you even found it. From the code itself:

#What follows are functional programming forms of the above code, which are more
#clunky and have somewhat less functionality. However, they are here if your
#really want them.

This should be revised with:

#And it doesn't work!

For your use case, you want the class Lognormal:

import powerlaw

X = powerlaw.Power_Law(parameters=[1.5], xmin=10).generate_random(1000)

fit=powerlaw.Fit(X)
print("power law:alpha=%s, D=%s, sigma=%s, xmin=%s" %(fit.alpha,fit.D,fit.sigma,fit.xmin))
# power law:alpha=1.49667016064, D=0.0164184126544, sigma=0.0212360825904, xmin=29.5707256239
print("lognormal: mu=%s, sigma=%s" %(fit.lognormal.mu,fit.lognormal.sigma))
# lognormal: mu=-453.445219074, sigma=30.4608351679

lognormal_fit = powerlaw.Lognormal(data=X, xmin=fit.xmin)
print("lognormal: mu=%s, sigma=%s" %(lognormal_fit.mu,lognormal_fit.sigma))
# lognormal: mu=-453.444231277, sigma=30.46080239

from powerlaw.

Related Issues (20)

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.