GithubHelp home page GithubHelp logo

Comments (3)

bvenn avatar bvenn commented on June 22, 2024 1

Thanks for reporting!🚀
I've traced down the issue to the following two lines:

The Array.rev must be removed at:

Array.init borderpadding (fun i ->
let paddX = addToXValue maxX ((float i + 1.) * minDistance)
let paddY = 0.
paddX,paddY)
|> Array.rev

The last point has to be integrated here:

if i = n-1 then
acc
|> List.rev
|> List.concat

After these modifications the result looks as follows:

//#r "nuget:FSharp.Stats"
#r @"C:\Users\bvenn\source\repos\FSharp.Stats\src\FSharp.Stats\bin\Release\netstandard2.0\FSharp.Stats.dll"
#r "nuget:Expecto"
#r "nuget: Plotly.NET"

open Plotly.NET

open System
open FSharp.Stats.Signal
open Expecto

let dataLength = 20
let padding = 10

let data =
    Array.init dataLength (
        fun i ->
            (3.0 + float i, 7.0 - float i)
    )


let expectLeadIn  = Array.init padding (fun i -> (3.0 - float (padding-i), 0.0))
let expectLeadOut = Array.init padding (fun i -> (3.0 + float (dataLength + i), 0.0))
let expectedPadded = Array.concat [expectLeadIn; data; expectLeadOut]

let padded = 
    Padding.pad data 1.0 Double.PositiveInfinity (-) (+) padding Padding.BorderPaddingMethod.Zero Padding.InternalPaddingMethod.NaN Padding.HugeGapPaddingMethod.NaN

let indices = Array.init padded.Length (fun x -> string x)

[
Chart.Point(data,Name="raw data")           |> Chart.withMarkerStyle (Size=10)
Chart.Point(expectedPadded,Name="expected") |> Chart.withMarkerStyle (Size=8)
Chart.Point(padded,Name="actual",MultiText=indices,TextPosition=StyleParam.TextPosition.TopRight)           |> Chart.withMarkerStyle (Size=6)
]
|> Chart.combine
|> Chart.show

image

@marklam, if it is ok for you I would integrate your tests into the test project. Of course you can add them yourself and file a PR if you want to.

from fsharp.stats.

marklam avatar marklam commented on June 22, 2024

@bvenn I'm more than happy for you to integrate those tests. Thanks for responding so quickly!

from fsharp.stats.

bvenn avatar bvenn commented on June 22, 2024

closed by 153d95e

from fsharp.stats.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.