Discuss, Learn and be Happy דיון בשאלות

help brightness_4 brightness_7 format_textdirection_r_to_l format_textdirection_l_to_r

מה יכולה להיות התוצאה של הפקודה הבאה: result <- tapply(iris$Sepal.Length, iris$Species, length)

1
done
by
מיין לפי

מה תהיה התוצאה של הפקודה הבאה: מה תהיה התוצאה של הפקודות הבאות? lets <- c(1,2,3) rep(lets, each =2)

1
done
אם היה time מה היה מודפס? רמז(acac)
by
מיין לפי

איזה מהטענות הבאות היא הנכונה ביותר?

1
done
by
מיין לפי

במטריצה MAT ניתן לבקשר את השורה השלישית כך: MAT[3,] ואתה העמודה הרביעית כך: MAT[,4]

1
done
by
מיין לפי

כיצד ניתן לחשב את המכפלה של כל שורה בטבלה df

1
done
by
מיין לפי

Suppose we have a vector `vec <- c(5,10,15,20,25)`. What is the result of `vec[vec>10]`?

1
done
by
מיין לפי

מה עושה הפונקציה rbind()?

1
done
vec1 <- c(1, 2, 3) vec2 <- c(4, 5, 6) result <- rbind(vec1, vec2) 3 2 1 6 5 4
by
מיין לפי

מה תהיה התוצאה של הפעלת: mean(c(1,2,NA), na.rm=TRUE)?

1
done
by
מיין לפי

What is the output of this code snippet? ``` x <- 7 if(x %% 2 == 0){ print("even") }else{ print("odd") } ```

1
done
by
מיין לפי

What does the following command do in R: `install.packages("dplyr")`?

1
done
by
מיין לפי