Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove benchmarks #11

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Clarity is required on the license and copyright.
The original FORTRAN code can be found here: https://www.netlib.org/go/lowess.f
The C code was found here: https://github.com/blindglobe/common-lisp-stat, but it has been deleted.
The C code can be found here: https://github.com/carlohamalainen/cl-lowess/blob/master/lowess.c

12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Lowess

## Clarity is required on the copyright and license.

[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://xKDR.github.io/Lowess.jl/dev)
![Build Status](https://github.com/xKDR/Lowess.jl/actions/workflows/ci.yml/badge.svg)
![Build Status](https://github.com/xKDR/Lowess.jl/actions/workflows/documentation.yml/badge.svg)
Expand Down Expand Up @@ -41,7 +39,7 @@ plot!(us, vs, legend=false)
# Benchmarks

```julia
using BenchmarkTools, using Loess, using Lowess
using BenchmarkTools, Loess, Lowess
xs = 10 .* rand(100)
xs = sort(xs)
ys = sin.(xs) .+ 0.5 * rand(100)
Expand All @@ -53,10 +51,10 @@ vs = predict(model, us)
end
```
```
BenchmarkTools.Trial: 6040 samples with 1 evaluation.
Range (min … max): 574.949 μs … 3.726 ms ┊ GC (min … max): 0.00% … 64.41%
Time (median): 693.659 μs ┊ GC (median): 0.00%
Time (mean ± σ): 825.584 μs ± 515.006 μs ┊ GC (mean ± σ): 16.85% ± 18.90%
BenchmarkTools.Trial: 10000 samples with 1 evaluation.
Range (min … max): 172.354 μs … 1.783 ms ┊ GC (min … max): 0.00% … 86.02%
Time (median): 186.823 μs ┊ GC (median): 0.00%
Time (mean ± σ): 215.683 μs ± 176.942 μs ┊ GC (mean ± σ): 11.76% ± 12.18%
```

```julia
Expand Down