Tom Breloff
Tom Breloff
Continuing the discussion from https://github.com/svaksha/Julia.jl/commit/a884fe9e921d57b87d85e970c2f57b8f21025641. Here are some proposed formats: > Example 1. + [SGP4.jl](https://github.com/crbinz/SGP4.jl) > {status_tag}:: Julia wrapper for the SGP4 satellite propagation model. > > Example 2. +...
Something like: ``` julia pick_action(actions, state) = rand(actions) result = run_episode(pick_action) ```
Something like: ``` julia type Episode steps_remaining::Int end # iteration methods... decrement steps_remaining and get the state env = Env(....) for state in Episode(env, maxsteps = 100) # pick an...
Graphs
Finish up spectral graphs, then tackle tree layouts and directed graphs. See also: https://github.com/JuliaPlots/Plots.jl/issues/4436
I was just thinking about this, and want to make a note before I forget. It would be cool to use https://github.com/JuliaWeb/GitHub.jl to download the stargazers (and watchers) for all...
Lets keep a running list of datasets we should add. Here's some links to consider: - http://www.audiocontentanalysis.org/data-sets/ - https://github.com/caesar0301/awesome-public-datasets - http://archive.ics.uci.edu/ml/ - https://www.cs.utexas.edu/~chaoyeh/web_action_data/dataset_list.html
I don't intend this to be merged as-is, but I want to start a discussion as to whether this approach will make sense. See the embedded TODO's for some ways...
Is there an easy way to hide/show the Immerse toolbar from a plot? Can the size be adjusted?
Can you pick up mouse-clicks on a Gadfly legend? If so it would be great to implement the feature of clicking on an item in the legend to hide/show the...