You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to plot 4clusters of each pollutant like BLACK CARBON, OZONE etc separately
I plotted a 4 cluster of all air mass trajectories.
now from that How can i plot 4 clusters of a pollutant?
means what is the contribution of BC in that Particular cluster
The text was updated successfully, but these errors were encountered:
jack-davison
changed the title
cluster[Question]:
[Question]: How to plot contributions of different pollutants to different clustered trajectories
Sep 18, 2023
You can use a bit of dplyr to calculate any statistic per cluster using the openair trajCluster() output:
library(dplyr)
#> #> Attaching package: 'dplyr'#> The following objects are masked from 'package:stats':#> #> filter, lag#> The following objects are masked from 'package:base':#> #> intersect, setdiff, setequal, union# get some traj datatraj_data<-openairmaps::traj_data# clusterclustered<-openair::trajCluster(traj_data, cols="Dark2")
I want to plot 4clusters of each pollutant like BLACK CARBON, OZONE etc separately
I plotted a 4 cluster of all air mass trajectories.
now from that How can i plot 4 clusters of a pollutant?
means what is the contribution of BC in that Particular cluster
The text was updated successfully, but these errors were encountered: