For my package: https://godoc.org/github.com/rocketlaunchr/dataframe-go/forecast
I have a function:
func Forecast(ctx context.Context, sdf interface{}, r *dataframe.Range, alg ForecastingAlgorithm, cfg interface{}, n uint, evalFunc EvaluationFunc) (interface{}, []Confidence, float64, error) which returns an interface{} as the first return value.

Unfortunately my function is categorized under type Confidence when it should not be.
I assume this issue would also be present in pkg.go.dev, but my package has been banned from there (despite the person in charge saying it will be allowed many many months ago), so I can't check if this issue persists.
For my package: https://godoc.org/github.com/rocketlaunchr/dataframe-go/forecast
I have a function:
func Forecast(ctx context.Context, sdf interface{}, r *dataframe.Range, alg ForecastingAlgorithm, cfg interface{}, n uint, evalFunc EvaluationFunc) (interface{}, []Confidence, float64, error)which returns aninterface{}as the first return value.Unfortunately my function is categorized under
type Confidencewhen it should not be.I assume this issue would also be present in
pkg.go.dev, but my package has been banned from there (despite the person in charge saying it will be allowed many many months ago), so I can't check if this issue persists.