File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,10 @@ class UnivariateSpline:
72
72
"""
73
73
1-D smoothing spline fit to a given set of data points.
74
74
75
+ .. legacy:: class
76
+
77
+ Specifically, we recommend using `make_splrep` instead.
78
+
75
79
Fits a spline y = spl(x) of degree `k` to the provided `x`, `y` data. `s`
76
80
specifies the number of knots by specifying a smoothing condition.
77
81
@@ -644,6 +648,10 @@ class InterpolatedUnivariateSpline(UnivariateSpline):
644
648
"""
645
649
1-D interpolating spline for a given set of data points.
646
650
651
+ .. legacy:: class
652
+
653
+ Specifically, we recommend using `make_interp_spline` instead.
654
+
647
655
Fits a spline y = spl(x) of degree `k` to the provided `x`, `y` data.
648
656
Spline function passes through all provided points. Equivalent to
649
657
`UnivariateSpline` with `s` = 0.
@@ -761,6 +769,11 @@ class LSQUnivariateSpline(UnivariateSpline):
761
769
"""
762
770
1-D spline with explicit internal knots.
763
771
772
+ .. legacy:: class
773
+
774
+ Specifically, we recommend using `make_lsq_spline` instead.
775
+
776
+
764
777
Fits a spline y = spl(x) of degree `k` to the provided `x`, `y` data. `t`
765
778
specifies the internal knots of the spline
766
779
You can’t perform that action at this time.
0 commit comments