COMPASS-DOE / data-workflows

Sensor data workflows and processing scripts
MIT License
4 stars 0 forks source link

GCW has NA Instrument names #205

Closed stephpenn1 closed 3 weeks ago

stephpenn1 commented 1 month ago

image

image

stephpenn1 commented 1 month ago

@bpbond also just realized my x axis is incorrectly ordered, any thoughts on how to fix this?

 mutate(
           ts_str = format(date, "%b-%Y"),
           ts_fct = factor(ts_str, levels = unique(ts_str)))
bpbond commented 1 month ago
arrange(date) %>%
mutate(
           ts_str = format(date, "%b-%Y"),
           ts_fct = factor(ts_str, levels = unique(ts_str)))

?

stephpenn1 commented 1 month ago

Hmmm no, tried and the dataset is arranged correctly with this but is graphing the same. I just pushed up availability_graph.R to heatmap branch if you want to take a look at the entire code

bpbond commented 1 month ago

See PR!

synoptic_avail_GCW

bpbond commented 3 weeks ago

Fixed in #206