Skip to content

Commit 03af391

Browse files
- update docs
1 parent 65052de commit 03af391

File tree

12 files changed

+22
-1
lines changed

12 files changed

+22
-1
lines changed

exports/sql.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// Copyright 2018-20 PJ Engineering and Business Solutions Pty. Ltd. All rights reserved.
22

3+
// Package exports provides functionality to save the data contained in a DataFrame into another format.
4+
// It provides inverse functionality to the imports package.
35
package exports
46

57
import (

forecast/algs/hw/holt_winters.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// Copyright 2018-20 PJ Engineering and Business Solutions Pty. Ltd. All rights reserved.
22

3+
// Package hw implements the Holt-Winters forecasting algorithm.
34
package hw
45

56
import (

forecast/algs/ses/ses.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// Copyright 2018-20 PJ Engineering and Business Solutions Pty. Ltd. All rights reserved.
22

3+
// Package ses implements the simple exponential smooting forecasting algorithm.
34
package ses
45

56
import (

forecast/forecast.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// Copyright 2018-20 PJ Engineering and Business Solutions Pty. Ltd. All rights reserved.
22

3+
// Package forecast provides an interface for custom forecasting algorithms.
34
package forecast
45

56
import (

forecast/interpolation/interpolate.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// Copyright 2018-20 PJ Engineering and Business Solutions Pty. Ltd. All rights reserved.
22

3+
// Package interpolation implements various algorithms to fill in missing values in a Series or DataFrame.
34
package interpolation
45

56
import (

imports/common.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// Copyright 2018-20 PJ Engineering and Business Solutions Pty. Ltd. All rights reserved.
22

3+
// Package imports provides functionality to read data contained in another format to populate a DataFrame.
4+
// It provides inverse functionality to the exports package.
35
package imports
46

57
import (

math/funcs/funcs.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright 2018-20 PJ Engineering and Business Solutions Pty. Ltd. All rights reserved.
2+
3+
// Package funcs provides functionality to apply mathematical functions to DataFrames.
14
package funcs
25

36
import (
@@ -109,7 +112,7 @@ func (p pfs) pf(row int) (*formula.Formula, error) {
109112
return nil, &dataframe.RowError{row, ErrUndefined}
110113
}
111114

112-
// Evaluate applies a PiecewiseFuncDefn to a particular series in a DataFrame.
115+
// Evaluate applies a PiecewiseFuncDefn to a particular Series in a DataFrame.
113116
//
114117
// Example:
115118
//

math/funcs/funcs_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Copyright 2018-20 PJ Engineering and Business Solutions Pty. Ltd. All rights reserved.
2+
13
package funcs
24

35
import (

math/matrix/matrix.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2018-20 PJ Engineering and Business Solutions Pty. Ltd. All rights reserved.
2+
3+
// Package matrix can be used to wrap a DataFrame such that it implements the Matrix
4+
// interface found in various external packages such as gonum.
15
package matrix
26

37
import (

math/matrix/matrix_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Copyright 2018-20 PJ Engineering and Business Solutions Pty. Ltd. All rights reserved.
2+
13
package matrix
24

35
import (

0 commit comments

Comments
 (0)