From 9369a33cc739de126432fed1a8e297e6369e7619 Mon Sep 17 00:00:00 2001 From: Zwart Date: Thu, 15 Aug 2024 08:32:22 -0700 Subject: [PATCH] update raw file example --- dashboard/instructions.qmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dashboard/instructions.qmd b/dashboard/instructions.qmd index dbc1cb9d19..fad33e0220 100644 --- a/dashboard/instructions.qmd +++ b/dashboard/instructions.qmd @@ -129,7 +129,7 @@ Ensemble (or sample) forecasts are transformed to a probability distribution fun Here is an example of a forecast that uses a normal distribution: ```{r} -df <- readr::read_csv("https://sdsc.osn.xsede.org/bio230014-bucket01/challenges/forecasts/raw/project_id=usgsrc4cast/T20240506050515_usgsrc4cast-2024-05-05-climatology.csv.gz", show_col_types = FALSE) +df <- readr::read_csv("https://sdsc.osn.xsede.org/bio230014-bucket01/challenges/forecasts/raw/project_id=usgsrc4cast/T20240813050531_usgsrc4cast-2024-08-12-climatology.csv.gz", show_col_types = FALSE) ``` ```{r} df |> @@ -140,7 +140,7 @@ df |> For an ensemble (or sample) forecast, the `family` column uses the word `ensemble` to designate that it is a ensemble forecast and the parameter column is the ensemble member number (`1`, `2`, `3` ...) ```{r} -df <- readr::read_csv("https://sdsc.osn.xsede.org/bio230014-bucket01/challenges/forecasts/raw/project_id=usgsrc4cast/T20240506050515_usgsrc4cast-2024-05-05-persistenceRW.csv.gz", show_col_types = FALSE) +df <- readr::read_csv("https://sdsc.osn.xsede.org/bio230014-bucket01/challenges/forecasts/raw/project_id=usgsrc4cast/T20240813050531_usgsrc4cast-2024-08-12-persistenceRW.csv.gz", show_col_types = FALSE) ``` ```{r} df |>