* Add first draft material for testing * added some first test stuff in julia * add asserti error * Rework intro slides * added package * Wrap up testing slides expect demo * Smooth demo part * Add statement on tests * Remove previous python exercise file --------- Co-authored-by: behinger (s-ccs 001) <benedikt.ehinger@vis.uni-stuttgart.de>
11 lines
170 B
Julia
11 lines
170 B
Julia
module MyStatsPackage
|
|
|
|
include("../../../firststeps/statistic_functions.jl")
|
|
|
|
export rse_mean
|
|
export rse_std
|
|
export rse_sum
|
|
export rse_tstat
|
|
|
|
end # module MyStatsPackage
|