Skip to content

Commit b29ec19

Browse files
authored
Merge pull request #136 from gcapes/scipy_moved_LinregressResult
Fix import error for LinregressResult
2 parents fe772de + 1588749 commit b29ec19

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

defdap/inspector.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
from typing import List
2121

2222
from scipy.stats import linregress
23-
from scipy.stats._stats_mstats_common import LinregressResult
2423
import pandas as pd
2524

2625
from defdap.plotting import Plot, GrainPlot
@@ -427,7 +426,7 @@ def plotRDR(self,
427426
vlist: List[float],
428427
allxlist: List[float],
429428
allylist: List[float],
430-
linRegResults: 'LinregressResult'):
429+
linRegResults):
431430
"""
432431
Plot RDR figure, including location of perpendicular lines and scatter plot of ucentered vs vcentered.
433432

0 commit comments

Comments
 (0)