Douglass.jl
Douglass.jl copied to clipboard
Stata-like toolkit for data wrangling on Julia DataFrames
Results
3
Douglass.jl issues
Sort by
recently updated
recently updated
newest added
Stata syntax: ``` frame df { gen z = SepalLength + SepalWidth replace z = _n if _n 3.0 } ``` Intended Julia syntax ``` @douglas df begin gen :z...
It seems like it would be nicer to have `if` as a row-wise operation. That is, instead of: ```julia d"generate :x = :SepalWidth + :PetalLength if :PetalLength .> 1.3" d"bysort...