Cameron Bieganek

Results 50 issues of Cameron Bieganek

I don't know if this is really feasible, but is it conceivable that JET could be used to automatically detect the necessary changes to the semantic version number based on...

It would be nice if `Date` and `DateTime` objects could be used directly in `LinearInterpolation`, similar to R's `approx`. For example, the following does not work: ``` julia> x =...

wishlist

This [came up on Discourse](https://discourse.julialang.org/t/how-to-use-ordered-keyword-equals-to-true-with-statsbase-sample-function-when-sampling-2-or-more-dimensional-array-from-a-population/57796). ```julia a = [1, 2] wv = weights([0.4, 0.6]) x = sample(a, wv, (2, 2), ordered=true) ``` ```julia julia> x = sample(a, wv, (3, 4),...

On Julia 1.6, when I scroll up through the REPL history using the up arrow key, there is no syntax highlighting for the lines of code that are displayed. I...

For instance, if I type `julia> "asdf"`, the first quotation mark doesn't show up until I type the `a`. Version Info: ```julia julia> versioninfo() Julia Version 1.4.0 Commit b8e9a9ecc6 (2020-03-21...

bug

I have a data set of dimensions `(87390, 243)`. Most of the columns are categorical variables that have been one-hot encoded. The size of the data set in memory is...

Not sure if this is the same as #430. ```julia using Unitful using Unitful: kg, m, s, inch, minute, W, ft, rad @unit hp "hp" HorsePower (74569987//100000)W false x =...

This ought to work: ```julia julia> c = Ball(Point(0, 0), 1) ERROR: MethodError: no method matching Ball(::Point2, ::Int64) Closest candidates are: Ball(::Tuple, ::Any) at ~/.julia/packages/Meshes/6EgDO/src/primitives/ball.jl:17 Ball(::Point{Dim, T}, ::T) where {Dim,...

enhancement
good first issue

I frequently misread the `col` keyword argument to `mapping` as "color". In the context of plotting, `"col" = "color"` springs to mind much more readily than `"col" = "column"`. In...

The current JLD2 interface requires providing a name for each object that you save, so if I want to save a single object and then reload it later, I have...

discussion