Skip to content

Commit

Permalink
Adding files
Browse files Browse the repository at this point in the history
  • Loading branch information
acrunyon committed Jan 18, 2023
1 parent f215d5c commit d9ed5fb
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,4 @@ output
*.png
*.PNG
images
Data/
27 changes: 27 additions & 0 deletions AKR-climate-futures-creation.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
title: "AKR Climate Futures"
author: "Amber"
format: html
editor: visual
---

## This uses it to create an actual document

Well this is interesting <https://quarto.org>.

## Running Code

When you click the **Render** button a document will be generated that includes both content and the output of embedded code. You can embed code like this:

```{r}
1 + 1
```

You can add options to executable code like this

```{r}
#| echo: false
2 * 2
```

The `echo: false` option disables the printing of code (only output is displayed).
6 changes: 4 additions & 2 deletions CF-selection.Rmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Summarizing T1 metrics for whole climate region"
title: "Selecting CFs for park"
author: "Amber Runyon"
date: "6/29/2021"
output: html_document
Expand All @@ -16,7 +16,9 @@ knitr::opts_chunk$set(echo = TRUE)
rm(list = ls())
library(stars);library(dplyr);library(ggplot2);library(ggthemes);library(viridis);library(here);library(ggrepel);library(rlang);library(ggbiplot)
library(stars);library(dplyr);library(ggplot2);library(ggthemes);library(viridis);library(here);library(ggrepel);library(rlang)
SiteID <- "KLGO"
area <- 'wrst_simple' #wrst_mtns, copper_plateau, coastal_mtns, eastern_coast
Expand Down

0 comments on commit d9ed5fb

Please sign in to comment.