-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: Add documentation for public functions in Soothsayer library * fix: Add typespecs to public functions in lib/ feat: Add typespecs notation to each public function in lib/ * fix: Add type definition for Soothsayer.Model.t() * docs: Update Soothsayer.predict return type * fix: Address Dialyzer warnings in add_fourier_terms/4 function * refactor: Replace :float64 with {:f, 64} in Soothsayer.Preprocessor * fix: Update doctest for Soothsayer.new/1 * fix: update doctest in lib/soothsayer.ex * fix: Update Preprocessor module to use {:f, 64} instead of :float64 * feat: Add dialyxir dependency for static code analysis
- Loading branch information
1 parent
b2cf5f6
commit e88ae7f
Showing
6 changed files
with
244 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
defmodule SoothsayerTest do | ||
use ExUnit.Case | ||
doctest Soothsayer | ||
|
||
alias Explorer.DataFrame | ||
alias Explorer.Series | ||
|