JuliaMath / Interpolations.jl

Fast, continuous interpolation of discrete datasets in Julia
http://juliamath.github.io/Interpolations.jl/
Other
524 stars 110 forks source link

Added simple example with Plots.jl interaction #463

Closed vini-fda closed 2 years ago

vini-fda commented 2 years ago

As requested by @mkitti on issue #403, I've added a simple plotting example with Plots.jl to the documentation. I've opted to include it in the "convenience contruction" doc file, and created a link to it in the main README.

codecov[bot] commented 2 years ago

Codecov Report

Merging #463 (f187177) into master (f0cf050) will increase coverage by 0.48%. The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff             @@
##           master     #463      +/-   ##
==========================================
+ Coverage   84.62%   85.10%   +0.48%     
==========================================
  Files          25       25              
  Lines        1691     1746      +55     
==========================================
+ Hits         1431     1486      +55     
  Misses        260      260              
Impacted Files Coverage Δ
src/iterate.jl 100.00% <0.00%> (ø)
src/lanczos/lanczos.jl 100.00% <0.00%> (ø)
src/b-splines/linear.jl 100.00% <0.00%> (ø)
src/b-splines/constant.jl 100.00% <0.00%> (ø)
src/b-splines/quadratic.jl 98.36% <0.00%> (+0.02%) :arrow_up:
src/monotonic/monotonic.jl 94.57% <0.00%> (+0.03%) :arrow_up:
src/b-splines/cubic.jl 98.30% <0.00%> (+0.05%) :arrow_up:
src/Interpolations.jl 76.47% <0.00%> (+0.17%) :arrow_up:
src/scaling/scaling.jl 90.57% <0.00%> (+0.28%) :arrow_up:
src/b-splines/prefiltering.jl 93.24% <0.00%> (+0.28%) :arrow_up:
... and 7 more

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update f0cf050...f187177. Read the comment docs.

mkitti commented 2 years ago

Looks good. Thank you.