Ronan Arraes Jardim Chagas
Ronan Arraes Jardim Chagas
Ref: https://github.com/JuliaData/DataFrames.jl/issues/2065
Add an option that enables PrettyTables.jl (text backend) to enlarge the rows if there is screen space left. Ref: https://github.com/JuliaData/DataFrames.jl/pull/2522
Add some mechanism to indicate if the data inside a row was cropped during the line print. Ref.: https://github.com/JuliaData/DataFrames.jl/pull/2429
It will be interesting to add to PrettyTables.jl a backend that can output an org table. Ref: https://github.com/mauro3/OrgTables.jl/issues/3
Hi guys! Is there a way to change the border width of a plot? In PyPlot, I usually do: ```julia blw = 2.5 ax[:spines]["top"][:set_linewidth](blw) ax[:spines]["bottom"][:set_linewidth](blw) ax[:spines]["left"][:set_linewidth](blw) ax[:spines]["right"][:set_linewidth](blw) ```
Hi! I am submitting the initial version of the code that makes DataFrames.jl uses PrettyTables.jl as HTML backend. I need features that are not released in PrettyTables.jl yet. Hence, I...
Hi @bkamins ! I thought that the HTML backend was much closer to the final version than LaTeX, but I was completely wrong :) I think I will start porting...
Hi @bkamins and @nalimilan, I started to see what features I need to implement in PrettyTables.jl so that we can use it as the HTML backend in DataFrames.jl. I will...
Is it possible to add support for [Julia language](http://julialang.org)?
Hi! Is it possible to change the default alignment with ternary operator from: ```julia anchor_left = show_icon ? Anchor(icon, :right, 1) : Anchor(c, :left, 0) ``` to ```julia anchor_left =...