From 693402ee320779de8b5b16745ec9bd82ea6a84f4 Mon Sep 17 00:00:00 2001 From: ayushpatnaikgit Date: Thu, 22 Jun 2023 12:49:57 +0530 Subject: [PATCH 1/3] Going ahead with MIT License. --- LICENSE | 3 +-- README.md | 2 -- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/LICENSE b/LICENSE index ab5335f..a789042 100644 --- a/LICENSE +++ b/LICENSE @@ -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 diff --git a/README.md b/README.md index fa922c5..616f5d7 100644 --- a/README.md +++ b/README.md @@ -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) From 0ab53aac75e512084b4cf18d501267546216eb03 Mon Sep 17 00:00:00 2001 From: ayushpatnaikgit Date: Thu, 22 Jun 2023 13:12:07 +0530 Subject: [PATCH 2/3] Update benchmarks --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 616f5d7..590e36f 100644 --- a/README.md +++ b/README.md @@ -51,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 From da9cdf0a6dfb50c26e0efc10fca87e62711c4740 Mon Sep 17 00:00:00 2001 From: ayushpatnaikgit Date: Thu, 22 Jun 2023 13:14:31 +0530 Subject: [PATCH 3/3] Fix syntax error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 590e36f..482b656 100644 --- a/README.md +++ b/README.md @@ -39,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)