droodman

Results 28 issues of droodman

It looks like TSP's recent overhaul of its web page for publishing price data has broken `pandas_datareader.tsp`. Here's a log: `>>> import pandas_datareader.tsp as tsp >>> tspreader = tsp.TSPReader(start='2015-10-1', end='2015-12-31')...

This is a fantastic package. I've discovered that it, like Julia in general, comes with a hidden cost, "time to first plot." My [package](https://github.com/droodman/WildBootTests.jl) currently uses @tturbo in half a...

I'm struggling to understand why this function won't load: ``` using LoopVectorization function f(X::Matrix{Float64}) retval = [1] @turbo for i ∈ eachindex(X) retval[1] += X[i] end end ``` When I...

See https://discourse.julialang.org/t/updating-documentation-for-interpolations-jl-v0-14/84082/13?u=droodman Thanks.

**Affects:** JuliaCall **Describe the bug** I'm getting weird crashes when I transfer a list from Python to Julia. This does not happen with PyJulia. Minimum working example below. ``` >>>...

bug

`ivreghdfe` is crashing on me unless I revert to reghdfe version 5.9.0. I think the "last estimates not found" error I'm getting traces to a `reghdfe, requirements` call. See log...

I have developed a Julia plugin for the commercial statistics package Stata, which is popular in economics and other fields. the plugin is infrastructure, to allow other new Stata packages...

Stata lets you economically state models with a subset of possible dummies for a given categorical variable: ``` regress y i(1 3).x ``` That regresses y on two dummies, one...

I find that in Windows 11, `using GR; histogram(randn(10000))` puts the plot window behind the Julia window. Often there's no indication that a plot was made. In a way, it's...