Skip to content

Instantly share code, notes, and snippets.

@Sh4pe
Created August 30, 2020 19:09

Revisions

  1. Sh4pe created this gist Aug 30, 2020.
    21 changes: 21 additions & 0 deletions dataframe_width.jl
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,21 @@
    ### A Pluto.jl notebook ###
    # v0.11.8

    using Markdown
    using InteractiveUtils

    # ╔═╡ 0b752c76-e6fa-11ea-3929-835e1cde79d8
    begin
    import Pkg; Pkg.activate(".")
    using DataFrames
    end

    # ╔═╡ 1b719dc0-eaf2-11ea-1f99-0d058531a8b1
    df = let
    ENV["LINES"] = 20
    DataFrame([Symbol("xx$i")=>1:20 for i in 1:20]);
    end

    # ╔═╡ Cell order:
    # ╠═0b752c76-e6fa-11ea-3929-835e1cde79d8
    # ╠═1b719dc0-eaf2-11ea-1f99-0d058531a8b1