Skip to content

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
kongdd committed Aug 16, 2023
1 parent 731d70f commit 6151225
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
3 changes: 3 additions & 0 deletions ext/IpaperTableExt/IpaperTableExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ include("tools.jl")
include("precompile.jl")


function TidyTable2.hello()
println("hello world!")
end

# export cbind, melt_list,
# fread, fwrite, dt_merge,
Expand Down
4 changes: 3 additions & 1 deletion src/tools_TidyTable2.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
@reexport module TidyTable2


funcs = (:rbind, :cbind,
funcs = (
:hello,
:rbind, :cbind,
:melt_list, :fread, :fwrite, :dt_merge,
:expand_grid, :array2df, :table2df)

Expand Down
13 changes: 7 additions & 6 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
using Test
using Ipaper

import NaNStatistics
import NaNStatistics: nanmean, nanmedian

using Ipaper: NanQuantile_low, NanQuantile_low!
# println(dirname(@__FILE__))
# println(pwd())

# cd(dirname(@__FILE__)) do

import NaNStatistics
import NaNStatistics: nanmean, nanmedian
using Ipaper: NanQuantile_low, NanQuantile_low!

include("test-stat_quantile.jl")


## DataTable
using DataFrames

include("datatable/test-cbind.jl")
include("datatable/test-merge.jl")
include("datatable/test-melt.jl")
Expand All @@ -34,7 +36,6 @@ include("test-tools.jl")
# include("test-timeit_all.jl")

include("test-stat_linreg.jl")
include("test-stat_quantile.jl")
include("test-stat_apply.jl")
include("test-stat_movmean.jl")

Expand Down

0 comments on commit 6151225

Please sign in to comment.