Florian Oswald
Florian Oswald
hi @ajdamico , i just pulled hmda with lodown, works like a charm. i would need the data a bit further back, starting 2000 or even 1990. I tried to...
hi, following the steps you outline i end up with ``` ➜ build git:(master) make test Running tests... Test project /Users/florian.oswald/git/gtest-cmake-example/build Start 1: that-test-I-made Could not find executable /Users/florian.oswald/git/gtest-cmake-example/build/runUnitTests Looked...
Hi, i am porting this from https://github.com/JuliaPlots/Plots.jl/issues/2825 because it seems the be the right place. After upgrading to the latest GR, i get this segfault. rebuilt GR and recompiled several...
Hi there! Not even sure that's a bug, but here is what i found. trying to load this file here http://www.nber.org/cbsa-msa-fips-ssa-county-crosswalk/cbsatocountycrosswalk.sas7bdat into R with library(sas7bdat) nber
sorry :-( ``` ➜ git git clone [email protected]:tlamadon/blm-replicate.git Cloning into 'blm-replicate'... remote: Enumerating objects: 122, done. remote: Counting objects: 100% (122/122), done. remote: Compressing objects: 100% (84/84), done. remote: Total...
## Problem description I often want to show a scatter plot with a regression line, next to which I want to print the slope coefficient of the line (or maybe...
``` julia> using BlackBoxOptim julia> function rosenbrock2d(x) return (1.0 - x[1])^2 + 100.0 * (x[2] - x[1]^2)^2 end rosenbrock2d (generic function with 1 method) julia> res = bboptimize(rosenbrock2d; SearchRange =...
hello, I find that I almost never am able to take advantage of all available workers on a cluster. Here I have 20 workers, but the `xnes` algorithm only ever...
hi, i was trying to replicate the example on the readme: ``` grid1 = linspace(1,3,10) sp = SplineParams(collect(grid1),0,3) # nodes, whether only 2 nodes, degree of spline sb = Basis(sp)...
hi there I have been reading this paper recently: http://johannesbrumm.com/wp-content/uploads/2017/09/Brumm-Scheidegger-2017-ECTA.pdf and they use adaptive sparse grids to compute a huge economic model. I thought that would be very cool to...