Code Library
Choose a language and exercises to start typing practice
| # | Time | Code Exercises | Difficulty | Number of lines |
|---|---|---|---|---|
|
1
|
4 months, 18 days, 8 hours, 17 minutes |
R
music_genre <- factor(c("Jazz", "Rock", "Classic", "Classic", "Pop", "Jazz", "Rock", "Jazz"))
|
Medium |
2 Line
|
|
2
|
4 months, 18 days, 8 hours, 17 minutes |
R
plot(c(1, 2, 3, 4, 5), c(3, 7, 8, 9, 12))
|
Medium |
1 Line
|
|
3
|
4 months, 18 days, 8 hours, 17 minutes |
R
Data_Frame <- data.frame (
|
Medium |
5 Line
|
|
4
|
4 months, 18 days, 8 hours, 17 minutes |
R
thislist <- list("apple", "banana", "cherry")
|
Medium |
2 Line
|
|
5
|
4 months, 18 days, 8 hours, 17 minutes |
R
fruits <- c("banana", "apple", "orange")
|
Medium |
2 Line
|
|
6
|
4 months, 18 days, 8 hours, 17 minutes |
R
my_function <- function() {
|
Medium |
4 Line
|
|
7
|
4 months, 18 days, 8 hours, 17 minutes |
R
for (x in 1:10) {
|
Medium |
3 Line
|
|
8
|
4 months, 18 days, 8 hours, 17 minutes |
R
a <- 33
|
Medium |
5 Line
|
|
9
|
4 months, 18 days, 8 hours, 17 minutes |
R
name <- "John"
|
Medium |
3 Line
|
|
10
|
4 months, 18 days, 8 hours, 17 minutes |
R
print("Hello World!")
|
Medium |
1 Line
|