augment.average_curve_lm {cmstatrExt} | R Documentation |
Augment a data.frame
with the results from average_curve_lm
Description
Augment a data.frame
with the results from average_curve_lm
Usage
## S3 method for class 'average_curve_lm'
augment(x, newdata = NULL, extrapolate = FALSE, ...)
Arguments
x |
an |
newdata |
(optional) a new |
extrapolate |
whether to show the curve fit on all data or only the data within the original fitted range. Default: FALSE |
... |
ignored |
Value
a data.frame
with new columns .fit
, .extrapolate
and
.residual
See Also
Examples
curve_fit <- average_curve_lm(
pa12_tension,
Coupon,
Stress ~ I(Strain) + I(Strain^2) + I(Strain^3) + 0,
n_bins = 100
)
augment(curve_fit)
## # A tibble: 3,105 × 6
## Coupon Strain Stress .fit .extrapolate .residual
## <chr> <dbl> <dbl> <dbl> <lgl> <dbl>
## 1 Coupon 4 0 -0.353 0 FALSE -0.353
## 2 Coupon 4 0.000200 -0.0604 0.235 FALSE -0.295
## 3 Coupon 4 0.000400 0.283 0.469 FALSE -0.185
## 4 Coupon 4 0.000601 0.475 0.702 FALSE -0.228
## 5 Coupon 4 0.000801 0.737 0.935 FALSE -0.198
## 6 Coupon 4 0.00100 0.803 1.17 FALSE -0.364
## 7 Coupon 4 0.00120 1.25 1.40 FALSE -0.151
## 8 Coupon 4 0.00140 1.32 1.63 FALSE -0.305
## 9 Coupon 4 0.00160 1.53 1.86 FALSE -0.325
## 10 Coupon 4 0.00180 2.01 2.09 FALSE -0.0735
## # i 3,095 more row
## # i Use `print(n = ...)` to see more rows
[Package cmstatrExt version 0.4.0 Index]