Hello @Malgorzata Thanks for sharing your work. The presentation style of your project is very pretty making your work easy to follow along. When printing a pandas DataFrame, inbuilt print
function doesn’t prettify the printing. To me I prefer using the display
function, it prints DataFrame as a table.
# Getting familiar with our dataset
display(stooq_de.iloc[0])
display(stooq_de.head())
display(stooq_de.tail())
In most notebooks I work with the function is imported by default. If in your case it is not imported you can import it with
from IPython.display import display
Happy Learning!