Skip to content

Commit

Permalink
notes and cleaned up code
Browse files Browse the repository at this point in the history
  • Loading branch information
Aidan-Zamfir committed May 28, 2024
1 parent f852763 commit 537d12f
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,31 @@ import (
"github.com/Aidan-Zamfir/normalizer/cli"
)


func main() {
cli.Execute()

}

// >>> go run . stand testdata.csv

// main -> cli/root.go -> execute() WORKS
// execute() -> init() WORKS
// init() -> normalizeCmd() | standardiseCmd() WORKS

// NM:
// -> csvData/parser.go -> getCSVData(FILEPATH) WORKS
// parrses csv file -> returns struct (d) WORKS
// -> data/equations -> standardise(d) /
// •parrses csv file -> returns array struct (d) WORKS
// -> data/equations -> minmax(d) /
// minmac(d) -> minimum(d) /
// -> maximum(d) /
// •normalize data -> retuns []float64{} /
// NEEDS TO RETURN DATA AND CONVERT TO CSV (?)

// STAND:
// -> csvData/parser.go -> getCSVData(FILEPATH) WORKS
// •parrses csv file -> returns array struct (d) WORKS
// -> data/equations -> Standardise(d) /
// Standardise(d) -> mean(d) /
// -> standardDeviation(d) /
// •standardises data -> retuns []float64{} /
// NEEDS TO RETURN DATA AND CONVERT TO CSV (?)

0 comments on commit 537d12f

Please sign in to comment.