Skip to content

Commit

Permalink
Case Study 10
Browse files Browse the repository at this point in the history
  • Loading branch information
tinan2001 committed Nov 1, 2024
1 parent d90db26 commit 59517e0
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions week_10/case_study_10.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ gplot(lulc)+
coord_equal()+
theme(legend.position = "right")+
guides(fill=guide_legend(ncol=1,byrow=TRUE))
```

```{r}
Expand Down Expand Up @@ -134,7 +133,6 @@ ggplot(data = c_dates_lst, aes(x = dates, y = Vertical_lst_data_extract))+
# Summerize weekly data to monthly climatologies
lst_month <- tapp(x = lst,index = 'month', fun = "mean", na.rm = TRUE)
#Layer names to Month names
names(lst_month)=month.name[as.numeric(str_replace(names(lst_month),"m_",""))]
```
Expand All @@ -148,7 +146,6 @@ gplot(lst_month)+
theme( axis.title = element_blank(), axis.text = element_blank())
```
```{r}
library (gtsummary)
monthly_means <- global(lst_month, mean, na.rm = TRUE)
kable(monthly_means,col.names = "Mean", align = "cc")
```
Expand Down

0 comments on commit 59517e0

Please sign in to comment.