Printing Frequency Tables as Tables

I’m trying to print out Frequency Tables of Data I have

out = DataFrame(Q1 = [3,3,3], Q2 = [3,2,1])

when I run this line or type

julia> AllOut)

I get a table like this.

Dim1 ╲ Dim2 │ 1  2  3
────────────┼────────
1           │ 0  0  1
2           │ 0  1  0
3           │ 1  0  0

but when I use the print command

print(AllOut)

I get output like this

[0 0 1; 0 1 0; 1 0 0]

Is there a way to print my output as a table?

There’s a step missing in your example to get a table from a DataFrame, but try show(AllOut), show(stdout, AllOut) and show(stdout, MIME("text/plain/"), AllOut).

Do you mean that I should have added the package DataFrames?

show worked!