python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Plotting ruin in R
I'm trying to recreate something similar to an image in modern actuarial risk theory using R: https://www.academia.edu/37238799/Modern_Actuarial_Risk_Theory (page 89)
Click here for image
In my case, ...
Datakid
Votes: 0
Answers: 1
Coding a line with exponentially distributed random drops at Poisson distributed intervals
I'm trying to model the ruin rate for an insurance company that will be receiving claims of random amounts (that I'm assuming will be exponentially distributed) at random time intervals (that I'm assu...
Datakid
Votes: 0
Answers: 1
How to plot the Poisson distribution graph with Python?
import numpy as np
from scipy.stats import poisson
import matplotlib.pyplot as plt
#generate Poisson distribution with sample size 30000
x = poisson.rvs(mu=0.9, size=30000)
#create plot of Poisson ...
john chong
Votes: 0
Answers: 1
Poisson fit curve over histogram plot
I 'd like to fit my empirical data to a poisson distribution curve.
I have the mean given value, say 2.3, and data (empirical).
def fit_poisson(data=None,network=None,mu=2.3):
sns.set_theme()
...

8-Bit Borges
Votes: 0
Answers: 1