on 03-08-2022 03:14 PM
In this article, you will learn how to preview data in Incorta Notebook.
Incorta notebook provide methods to let you preview data. using show(), head(), printSchema(), and describe().
incorta.show(df)
incorta.head(df,n=1)
incorta.printSchema(df)
incorta.describe(df)
You can view the contents of a DataFrame with the incorta.show() method. Give your Dataframe name in parentheses.
Use incorta.head() to display the first n rows.
The printSchema() method provides an easily readable view of the DataFrame schema.
You can use incorta.describe(df) to view some basic statistical details like count, mean, standard deviation, minimum and maximum.
incorta.show(df.summary())
Use incorta.show(df.summary()) to get more statistical details, 25%, 50%, and 75%.