Harry Scholes

Results 10 issues of Harry Scholes

This is one possible way to implement #51. Essentially we redefine the `bootstrap` method, that contains the main logic, to accept a tuple and then define a separate method that...

Implementing this functionality would would allow you to do things like calculate the mean difference between two distributions: ```julia using Statistics xs = rand(1000) ys = rand(1000) bootstrap((x,y)->mean(x)-mean(y), (xs, ys),...

As per the [package naming guidelines](https://julialang.github.io/Pkg.jl/v1/creating-packages/#Package-naming-guidelines-1) in the Pkg.jl docs.

## IPython Pressing `shift + tab` when calling a function `f` displays the docstring of `f`: ## IJulia The behaviour is different in IJulia. If a number is given as...

This PR is an overhaul of the `PermutationTest` and - Deprecates `ExactPermutationTest` and `ApproximatePermutationTest` - Implements two constructors of `PermutationTest` for exact and approximate tests - Changes the order of...

`ExactPermutationTest` and `ApproximatePermutationTest` methods currently return instances of `PermutationTest`. Should they instead return instances of `ExactPermutationTest` and `ApproximatePermutationTest`, where ```julia abstract type AbstractPermutationTest{T

I just implemented `stratifiedkfolds` for my own work. It might be something that could live in this package. I'm not too familiar with the internals of MLDataPattern, so it might...

Travis now adds codecov and coveralls support: ```yaml codecov: true coveralls: true ``` https://docs.travis-ci.com/user/languages/julia/#coverage

wont-fix

Would it be possible to call `spacedelim=true` internally if the user sets `delim` to `' '`? I feel like this will avoid a lot of people getting frustrated when they...

bug

```julia julia> using DataFrames, CSVFiles, FileIO julia> df = DataFrame(a = [1,2,3], b = [4,5,6]); julia> stream = IOBuffer(); julia> fileiostream = Stream(format"CSV", stream); julia> save(fileiostream, df) julia> load(fileiostream) 0x0...