Maggi
Kelly
Andy
Lyons
Sean
Hogan
Shane
Feirer
Robert
Johnson
Priyanka
Vyas
Genoa
Starrs

.png)

.png)

Andy Lyons

Taiyu Guan

Genoa Starrs
.png)
| GIS & Drone Services | Workshops | Office Hours Sign-up link! |
|---|---|---|
![]() |
• ArcGIS Story Maps • Geoprocessing with Python • ArcGIS Field Maps • Intro to ArcGIS Online • Spatial Analysis with R and Python |
• Using spatial data in research and extension • Software and Apps • Drones • Research Data and Analysis • Programming |
“An open-source scientific and technical publishing system”
“An open-source scientific and technical publishing system”
Create reproducible documents, presentations, and websites using text, code, and data.
“An open-source scientific and technical publishing system”
Create reproducible documents, presentations, and websites using text, code, and data.
A successor to R Markdown
Include your code!
# Import packages
library(ggplot2)
library(sf)
# Read the UCANR data
UC_ANR <- sf::st_read("UC_ANR.gpkg", quiet = TRUE)
# Use ggplot2 to plot the data
p<- ggplot(UC_ANR, aes(x = CATEGORY, fill = AcademicTitle)) +
geom_bar(position = "fill") +
scale_y_continuous(labels = scales::percent_format()) +
labs(
x = "Work Location Type",
y = "Percent of Positions",
fill = "Job Titles"
) +
theme_minimal() +
theme(
axis.text.x = element_text(angle = 45, hjust = 1),
# Specify a transparent background
panel.background = element_rect(fill = "transparent", color = NA),
plot.background = element_rect(fill = "transparent", color = NA),
panel.grid.major = element_blank(),
panel.grid.minor = element_blank()
)
ggsave("transparent_plot.png", plot = p, bg = "transparent", width = 8, height = 4)… And show the output.
Stacked Percentage of UC ANR Position Titles by Work Location
“Connecting the power of UC research with local communities to improve the lives of all Californians.”
… No really,
If you’re used to Coding and:
If you’re used to Coding and:
Quarto is a natural progression.
If you’re used to User Interfaces like:
Quarto will have more of a learning curve, but is still useful!
Overall, it has lots of fun bells and whistles for those who take the time to explore it!
{mermaid}
flowchart LR
A[You] --> B(See this webinar)
B --> C{Explore Quarto?}
C --> D(Yes)
C --> E(No)
D --> F[Happy Joyful Reproducible]
E --> G[Click and Drag 4 Life Also Fine]
flowchart LR
classDef myStyle font-size:14px;
A[You] --> B(See this webinar)
B --> C{Explore \nQuarto?}
C --> D(Yes)
C --> E(No)
D --> F[Happy Joyful \nReproducible]
E --> G[Click and Drag 4 Life \nAlso Fine]
class A,B,C,D,E,F,G myStyle;