Highlight subset of data in a plot using ggplot2

Publicado em: 18 Maio 2023
no canal de: Rajendra Choure
556
22

#rprogramming #datavisualization #ggplot2 #highlight #subset

In this video, I have demonstrated the use of function subset() inside geom to get a subset of the data highlighted in te plot. Rearrangement of the layers also has been discussed with adjustments to alpha to make the highlighting effective.
the code

library(palmerpenguins)

head(penguins)
summary(penguins)


library(ggplot2)
ggplot(penguins,aes(flipper_length_mm,body_mass_g,color=species))+
geom_point(data=subset(penguins,island=="Biscoe"), color="red",size=3)+
geom_point()+
theme_classic()


subset(penguins,island=="Biscoe")
Facebook page:
  / rajendrachoureisc  

Mail Id:
rajuchoure@gmail.com

youtube playlist:
   • R programming tutorials  


Nesta página do site você pode assistir ao vídeo on-line Highlight subset of data in a plot using ggplot2 duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário Rajendra Choure 18 Maio 2023, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 556 vezes e gostou 22 espectadores. Boa visualização!