Skip to content

Commit

Permalink
Tiny_change
Browse files Browse the repository at this point in the history
  • Loading branch information
colintbowers committed Oct 22, 2018
1 parent a3e0814 commit 8b45477
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,11 @@ end

#Test exotic dataset types
@testset "Exotic data types test" begin
using DataFrames
using DataFrames, TimeSeries
Random.seed!(1234)
xdf = DataFrame(xmat)
y = dboot(xdf, bootmethod=:stationary, blocklength=5, numresample=1000, flevel1=x->mean(DataFrames.columns(x)[1]))
@test isapprox(y, 0.0805280736777265)
using TimeSeries
dtvec = [ Date(2000)+Day(n) for n = 1:size(xmat,1) ]
xta1 = TimeSeries.TimeArray(dtvec, x)
xta2 = TimeSeries.TimeArray(dtvec, xmat)
Expand Down

0 comments on commit 8b45477

Please sign in to comment.