Carlos Parada
Carlos Parada
There are fast discrepancy calculations that can be used to estimate the quality of a low-discrepancy point set, see [Section 10.2 (page 167)](https://link.springer.com/content/pdf/10.1007/978-3-319-04696-9.pdf) for example. We could then try optimizing...
Effective dimension is a very important concept in QMC; it's necessary to understand what points you should use and how to . We should probably create a tutorial explaining them....
The documentation for `LatticeRuleSample` provides no information or references as to how the generating vector is chosen or why it should be expected to perform well, which is especially weird...
On version 1.1: ``` julia> tup = (x=1, y=2) (x = 1, y = 2) julia> tup[Not(:x)] ERROR: MethodError: no method matching getindex(::NamedTuple{(:x, :y), Tuple{Int64, Int64}}, ::InvertedIndex{Symbol}) Closest candidates are:...
I see why the `pure` keyword was added, but having `pure=false` contradicts Julia's behavior, which assumes mapped functions are pure. For instance: ``` julia> using SparseArrays julia> A = sparse([1,...
Got a mildly weird warning message that should probably be disable -- it looks like a bug in TypedTables itself. ``` include("Cleaning.jl") ┌ Warning: use values(kwargs) and keys(kwargs) instead of...
First, it's accidentally named as `FlexTable`:  Second, I think it needs some extra detail. I'm trying to figure out how to take a `TypedTable` and declare the first column...
The Stan reference manual's section on [ARMA](https://mc-stan.org/docs/stan-users-guide/autoregressive.html) models could be improved by showing how to initialize an autoregression using the stationary distribution. Assuming the first few draws are drawn from...
Julia [suggests using `Rational` numbers](https://docs.julialang.org/en/v1/manual/style-guide/#Avoid-using-floats-for-numeric-literals-in-generic-code-when-possible) rather than floating-point literals, as floats are more disruptive. While good advice in general, this means code following the style guide will tend to disrupt...
Might be time for this package to move to greener pastures (Base) given it seems to be broadly useful--do you think this would make sense?