agila5 / R4DS-PhD-Unimib

Materials for the R4DS course - PhD in Statistics at the University of Milano Bicocca

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

My first Reprex!

agila5 opened this issue · comments

f1 <- function(x, w = 1) f2(x, w)
f2 <- function(x, w = 2) f3(x, w)
f3 <- function(x, w = 3) sum(x) + w
f1(x = "ABC")
#> Error in sum(x): invalid 'type' (character) of argument

Created on 2023-03-23 with reprex v2.0.2