From the course: Data Science Reporting with Quarto for Python
Unlock this course with a free trial
Join today to access over 24,600 courses taught by industry experts.
Solution: Create a rich Quarto report
From the course: Data Science Reporting with Quarto for Python
Solution: Create a rich Quarto report
(upbeat music) - [Instructor] Okay, let's get started with this challenge. In VS Code we're going to create a new quarto document using the Command palette Command + Shift + P. There we go. And the Command we want is quarto new documents. Let's save this into our folder. So let's save that into the 04_07b folder and we'll call that penguin-report.qmd. We'll hit enter. There we go. There the yaml header for our document. Let's also give it the title, Palmer Penguins. Lovely. So we want to load the Palmer Penguins package, which means that we need a code chunk, which we create with a keyboard shortcut Command + Shift + I, that's a Python code chunk. And what we're going to do is from Palmer Penguins, we are going to import load penguins. We'll create an object called penguins_df, and that will be the result of running the load penguins function. And let's also create a penguins_cleaned_df and that's going to be penguins_df. And we'll use dropna like that. So now let's create a…
Contents
-
-
-
-
-
-
(Locked)
Using Matplotlib and Plotnine in Quarto4m 16s
-
Displaying tables of data in Quarto5m 9s
-
(Locked)
Displaying images in Quarto4m 25s
-
(Locked)
Inserting calculated values into sentences3m 34s
-
(Locked)
Adding captions and cross-references to Quarto8m 35s
-
(Locked)
Challenge: Create a rich Quarto report30s
-
(Locked)
Solution: Create a rich Quarto report8m 39s
-
(Locked)
-
-
-
-