diff --git a/01_opening_and_understanding.html b/01_opening_and_understanding.html index e1499e3..d8d9a89 100644 --- a/01_opening_and_understanding.html +++ b/01_opening_and_understanding.html @@ -391,11 +391,36 @@
#library(IRdisplay)
-#display_html('<iframe width="560" height="315" src="https://www.youtube.com/embed/699jkjLJGyM" frameborder="0" allowfullscreen></iframe>')
+# Replace "VIDEO_ID_HERE" with the actual ID of the YouTube video
+video_id <- "Xer1XBm3sns"
+
+# Create the YouTube video URL
+video_url <- paste0("https://www.youtube.com/watch?v=", video_id)
+
+# Create a hyperlink to the YouTube video
+video_link <- paste0("<a href='", video_url, "'>Link to YouTube Video</a>")
+
+# Display the hyperlink
+display_html(video_link)
+
+
+
Error in display_html(video_link): could not find function "display_html"
+Traceback:
+
library(IRdisplay)
+display_html('<iframe width="560" height="315" src="https://youtu.be/Xer1XBm3sns?si=GqPeXjDlu8RJD8Lb" frameborder="0" allowfullscreen></iframe>')
In this notebook we will go through how to open a NetCDF file in R. We will also try to understand the file and extract the data and metadata from it.
Firstly, let’s import the modules that we will work with.
@@ -811,6 +836,9 @@[1] "Size of dimensions of 2D anom array"
+