Ian Weaver

Results 68 comments of Ian Weaver

Would it be possible to list file/directory paths on pressing the tab key first instead of a character that already exists? The [workaround](https://github.com/fonsp/Pluto.jl/issues/717) was to enter `"/."`, but I don't...

Hi @pablosaa, sorry, what are you trying to do exactly? Ctrl+C looks to copy the selected text in the cell, while Ctrl+X cuts, on my end at least

ayyy, it even knows about DataFrames! (just function calls in general?) ```julia using DataFrames hello = 123 DataFrame(hello = rand(10)) # All good in the neighborhood ``` although it will...

Sure! It's my understanding that the standard explicit Euler method just uses the information at the beginning of the time step, as stated in the homework assignment: https://github.com/mitmath/18S191/blob/a5cf7fd3b04d6d285bcd1239d3dcb009342a26fe/homework/homework6/hw6.jl#L210-L212 The test...

Would a few simple type recipes be a start possibly? I'm still learning about full recipes, but something like this seems to work pretty well: ```julia using CairoMakie using Measurements...

I think having a way to let Makie.jl know that `scatter(m::AbstractVector{ `errorbar` + `scatter` and `line` -> `band`+`line` would be really neat! I'm not aware of a way to do...

Hi @sourestdeeds, fwiw, I think you can access the original `LombScargle` object (and its `false_alarm_probability`/`false_alarm_level` methods) under `ls._LS_object`. Since this is a private method, idk if this is how the...

Thanks for suggesting the `normalizenames=true` option, it really helps a lot! I see what you mean about the Regex option and think that going the function route would be a...