DataFrames
DataFramesはpythonにおけるpandasのJulia版。
showの引数にallcols=trueを付けることで全てcolumnが表示される。 allrows=trueをつければ全てのrowが表示される。
allcols=true
allrows=true
df = DataFrame(A = 1:4, B = ["M", "F", "F", "M"]) show(df,allcols=true)