I have no idea if it's still the correct way, but I add this at the top of most notebooks:
Base.show(io::IO, x::Float64) = @printf io "%0.4f" x; On Wed, Sep 28, 2016 at 6:22 PM parthasarathy ganguly < [email protected]> wrote: > I would like to set all my Julia outputs unto 4 decimals point display. > How can I do it? >
