Authors

html_test Latest

24.03.2020

Test html Summary Row confirmed 33,089 last 24h 4,517 recovered 3,355 death 2182 Row Daily Cumulative Cases by Type Cases by CCAA Map Map Simulated data Simulated Visualitzations Row Histogram, e.g. age Interactive Row...

454 sym R (9695 sym/1 pcs) 6 img

Update Report (8/9/2023) Latest

09.08.2023

Table of contents Introduction New Country: South Sudan Forecasts Niger Forecasts Ethiopia Forecasts Cameroon Forecasting Mozambique Forecasting Rwanda Forecasting Morocco Forecasting Tunisia Forecasting Kazakhstan Forecasting...

9690 sym 3 img

function_lines Latest

09.01.2022

R Markdown This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com. When you click the Knit button a document will...

609 sym R (893 sym/18 pcs) 1 img

Peter Solymos 65

ISEC 2014 in Montpellier Latest

01.07.2014

Discussing problems vs. finding solutions: an operational framework for dealing with imperfect detection in species distribution modelling, International Statistical Ecology Conference 2014, Montpellier, France. Isec july2 h1_solymos from...

672 sym

CARE Dental Trauma 2008-2018 Latest

31.01.2020

Packages pacman::p_load(tidyverse, janitor, visdat, tableone, emmeans) Dataset df <-...

14204 sym R (8344 sym/34 pcs) 13 img

Week 1 Homework Latest

16.07.2023

Week 1 R Assignment I. Write a loop that calculates 12-factorial factorial<-function (x){ y<- 1 for(i in 1:x) { y<-y*((1:x)[i]) print(y) } } factorial(12) II. Creating a numeric vector that contains the sequence from 20 to 50 by 5. numvect...

599 sym

Peter 64

Factorial of 12 Latest

19.07.2020

my_factorial <- function(){ # input here is 12 val = 12 res = 1 # checking whether the number is negative, zero or positive if(val < 0) { print(" Factorial does not exist for such numbers. ") } else if(val == 0) {...

5 sym R (477 sym/2 pcs)

Chasin’ COVID Latest

31.07.2020

Approximate Bayesian Computation (ABC): An application to occupational health David MoriñaBarcelona Graduate School of Mathematics (BGSMath) - UAB Simulation Example library(moments) dades <- rnorm(100, mean=1.5, sd=2.5) dadesSummary <-...

337 sym R (905 sym/5 pcs) 3 img

Homework 1 SPS_2021 Latest

06.01.2022

## Problem 1 using a for loop sum <- 1 for(i in 1:13){ sum=sum*i } print(sum) ## [1] 6227020800 ## using a while loop sum <- 1 x <-1 while(x<14){ sum =sum*x x=x+1 } print(sum) ## [1] 6227020800 ## Problem 2 A Numeric Vector...

13 sym R (849 sym/8 pcs)

Bluecology blog 64

Create an inset plot Latest

10.10.2016

How to inset a plot on another plot in R The difficulty of plotting one plot over the top of another in R has always frustrated me. I often end up opening some photo editing software (like Gimp, which is free) and doing it manually. However,...

1256 sym R (134 sym/4 pcs) 2 img