ADD:
AIC statistic added
This commit is contained in:
@@ -232,11 +232,13 @@ class TestFitterPlotQQ:
|
||||
|
||||
def test_qq_hazen_returns_figure(self):
|
||||
import plotly.graph_objects as go
|
||||
|
||||
fig = self.f.plot_qq_plots(method="hazen")
|
||||
assert isinstance(fig, go.Figure)
|
||||
|
||||
def test_qq_filliben_returns_figure(self):
|
||||
import plotly.graph_objects as go
|
||||
|
||||
fig = self.f.plot_qq_plots(method="filliben")
|
||||
assert isinstance(fig, go.Figure)
|
||||
|
||||
@@ -257,11 +259,13 @@ class TestFitterHistogram:
|
||||
|
||||
def test_histogram_returns_figure(self):
|
||||
import plotly.graph_objects as go
|
||||
|
||||
fig = self.f.histogram_with_fits()
|
||||
assert isinstance(fig, go.Figure)
|
||||
|
||||
def test_histogram_seaborn_returns_figure(self):
|
||||
import matplotlib.pyplot as plt
|
||||
|
||||
fig = self.f.histogram_with_fits_seaborn()
|
||||
assert isinstance(fig, plt.Figure)
|
||||
plt.close("all")
|
||||
|
||||
Reference in New Issue
Block a user