How to see the whole DataFrame in Jupyter in Julia

I am using Jupyter to develop Julia's code. How can I show a whole DataFrame, say, 200 rows. I tried head(myDataframe, 200), but only the first 30 lines are shown. If I do this without head, I get 30 rows again.

+4
source share
1 answer

I tested showallin JuliaBox and it works great.

using DataFrames
df = DataFrame(A=1:200, B=rand(200))
Out[]:only showing the first 30 rows

showall(df)
Out[]:showing all rows 
+2
source

Source: https://habr.com/ru/post/1606838/


All Articles