Skip to content

Commit 6bdd578

Browse files
committed
added bullet points
1 parent 181d9d1 commit 6bdd578

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1071,8 +1071,8 @@ myFactorial(25) # Returns the value of 25!
10711071
```
10721072

10731073
**Resources:**
1074-
[Examples of builtin functions](https://www.statmethods.net/management/functions.html)
1075-
[Practice on writing R functions](https://www.datacamp.com/courses/writing-functions-in-r)
1074+
- [Examples of builtin functions](https://www.statmethods.net/management/functions.html)
1075+
- [Practice on writing R functions](https://www.datacamp.com/courses/writing-functions-in-r)
10761076

10771077
## For loops, apply, sapply, lapply
10781078

@@ -1125,7 +1125,7 @@ myList <- list(x = 'my', y = 'list', z = 'is', w = 'cool')
11251125
lapply(myList, length) # This will give a list with 4 numbers: 2, 4, 2, 4
11261126
```
11271127
**Resources:**
1128-
[Using apply, sapply, lapply in R](https://www.r-bloggers.com/using-apply-sapply-lapply-in-r/)
1128+
- [Using apply, sapply, lapply in R](https://www.r-bloggers.com/using-apply-sapply-lapply-in-r/)
11291129

11301130
## If-else
11311131
As all the other languages, also R has operators for conditional statement (if-else):
@@ -1156,7 +1156,9 @@ x || y # Logical OR
11561156
## Plotting
11571157
Beside the builtin functions, there are several packages designed to produce high quality graphs. Probably, the most famous among these is ```ggplot2```.
11581158
Here, it is possible to find nice examples of data graphs generated using ```ggplot2```
1159-
[R Graphs](http://www.cookbook-r.com/Graphs/)
1159+
1160+
- [R Graphs](http://www.cookbook-r.com/Graphs/)
1161+
11601162
# Python
11611163
"Python is an interpreted high-level programming language for general-purpose programming."
11621164
- [Python Website](https://www.python.org/)

0 commit comments

Comments
 (0)