Transgender Day of Visibility
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
My understanding is that transgender is an umbrella term for people whose gender identity or expression differs from the sex they were assigned at birth. It reflects a deeply held internal sense of self—something not defined by appearance, clothing, or medical procedures. Being transgender is about identity, not sexual orientation.
What I’ve learned over time is that many transgender people face challenges most of us never have to think about. These include discrimination, gaps in legal protection, denial of medical care, and even physical violence. There are also everyday barriers that rarely make headlines, like difficulty obtaining accurate driver’s licenses or passports—documents most of us take for granted.
I found this resource helpful: Understanding the Transgender Community .
I wish every transgender person could live their life openly, safely, and without being hassled for who they are.
The five color Transgender Pride Flag was designed by Monica Helms in 1999. I made this flag in computer language R. Here is the R code.
########################
library(ggplot2)
# Define the colors in order: Blue, Pink, White, Pink, Blue
trans_colors <- c("#5BCEFA", "#F5A9B8", "#FFFFFF", "#F5A9B8", "#5BCEFA")
# Create a data frame for the 5 stripes
flag_data <- data.frame(
stripe = factor(1:5),
height = rep(1, 5)
)
# Plot the flag
ggplot(flag_data, aes(x = 1, y = height, fill = stripe)) +
geom_bar(stat = "identity", width = 1, color = NA) +
scale_fill_manual(values = rev(trans_colors)) + # Reverse to stack correctly
theme_void() + # Remove axes and labels
theme(legend.position = "none") +
coord_cartesian(expand = FALSE)
End
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
