Tweak final functions para
This commit is contained in:
parent
3496aafabf
commit
c6629dcd1c
|
@ -727,4 +727,4 @@ table(replicate(1000, 1 + 2))
|
||||||
rm(`+`)
|
rm(`+`)
|
||||||
```
|
```
|
||||||
|
|
||||||
This is a common phenomenon in R. R gives you a lot of control. You can do many things that are not possible in other programming languages. You can things that 99% of the time extremely ill-advised (like overriding how addition works!), but this power and flexibility is what makes tools like ggplot2 and dplyr possible. Learning how to make good use of this flexibility is beyond the scope of this book, but you can read about in "[Advanced R](http://adv-r.had.co.nz)".
|
This is a common phenomenon in R. R places few limits on your power. You can do many things that you can't do in other programming languages. You can do many things that 99% of the time are extremely ill-advised (like overriding how addition works!). But this power and flexibility is what makes tools like ggplot2 and dplyr possible. Learning how to make best use of this flexibility is beyond the scope of this book, but you can read about in "[Advanced R](http://adv-r.had.co.nz)".
|
||||||
|
|
Loading…
Reference in New Issue