Skip to content

Commit

Permalink
Merge pull request #84 from IBM/project-toml-edits
Browse files Browse the repository at this point in the history
remove unnecessary package and fix Project.toml
  • Loading branch information
ppalmes authored Aug 20, 2019
2 parents d31d531 + 5aa6975 commit 7623d10
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
13 changes: 9 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
name = "TSML"
uuid = "198dc43e-9e51-5cd7-9d40-d9794d335912"
authors = ["Paulito Palmes <[email protected]>"]
version = "2.3.6"
version = "2.3.7"

[deps]
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
CodecBzip2 = "523fee87-0ab8-5b00-afb7-3ecf72e48cfd"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
DecisionTree = "7806a523-6efd-50cb-b5f6-3fa6f1930dbb"
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
GR = "28b8d3ca-fb5f-59d9-8090-bfdbd6d07a71"
Expand All @@ -20,12 +19,18 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
MLBase = "f0e99cf1-93fa-52ec-9ecc-5026115318e0"
MLDataUtils = "cc2ba9b6-d476-5e6d-8eaf-a92d5412d41d"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"

[compat]
julia = "1"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
1 change: 0 additions & 1 deletion src/decisiontree.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import TSML.TSMLTypes.fit!
import TSML.TSMLTypes.transform!
using TSML.Utils

using Random
import DecisionTree
DT = DecisionTree

Expand Down
1 change: 0 additions & 1 deletion src/monotonicer.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

using Dates
using DataFrames
using Random
using Statistics

export fit!,transform!,ismonotonic,dailyflips
Expand Down
1 change: 0 additions & 1 deletion src/outliernicer.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

using Dates
using DataFrames
using Random
using Statistics
using StatsBase: iqr, quantile, sample

Expand Down
1 change: 0 additions & 1 deletion src/statifier.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ using StatsBase: std, skewness, kurtosis, variation, sem, mad
using StatsBase: entropy, summarystats, autocor, pacf, rle, quantile
using Dates
using DataFrames
using Random
using Statistics

export fit!,transform!
Expand Down

0 comments on commit 7623d10

Please sign in to comment.