From dd5a70be3e142d8511ce3b545b4294b9839cfe99 Mon Sep 17 00:00:00 2001 From: Michelle Donzallaz Date: Fri, 4 Jun 2021 14:56:49 +0200 Subject: [PATCH] updated installation instructions in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a303e41..11a801e 100644 --- a/README.md +++ b/README.md @@ -23,12 +23,12 @@ Die development-Version des Package liegt auf GitHub. Sie kann auf zwei Arten in # Variante 1 library(downloader) -download("https://github.com/statistikZH/statR/archive/dev.tar.gz", "statR.tar.gz") +download("https://github.com/statistikZH/statR/archive/refs/heads/master.tar.gz", "statR.tar.gz") install.packages("statR.tar.gz", repos = NULL, type = "source") # Variante 2 library(devtools) -devtools::install_github("statistikZH/statR",ref="dev") +devtools::install_github("statistikZH/statR") ```