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

help brightness_4 brightness_7 format_textdirection_r_to_l format_textdirection_l_to_r

What will `seq(1,5,2)` generate in R?

1
done
by
מיין לפי

מה עושה `table()` ב-R?

1
done
הפונקציה table() ב-R משמשת ליצירת טבלת מגירה של הספירות בכל שילוב של רמות גורמים. בעיקרו של דבר, הוא סופר את התדירות של כל ערך ייחודי בוקטור (או שילוב של וקטורים) ומציג את התוצאה בפורמט טבלה.
by
מיין לפי

מה עושה `length(x)` ב-R?

1
done
by
מיין לפי

What is the output of `sqrt(-1)` in R?

1
done
מחשבת את השורש הריבועי של מספר.
by
מיין לפי

What is the function to create a sequence of numbers from 1 to 10 with a step of 2 in R?

1
done
by
מיין לפי

What is the output of `c(TRUE, FALSE) | c(FALSE, FALSE)` in R?

1
sentiment_very_satisfied
by
מיין לפי

What is the output of `c(1, 2, 3)[c(TRUE, FALSE, TRUE)]` in R?

1
sentiment_very_satisfied
by
מיין לפי

What is the output of `c(1, 2, 3) %in% c(2, 3, 4)` in R?

1
done
by
מיין לפי

What does `as.numeric("3")` return in R?

1
done
done
by
מיין לפי

What does `as.character(3)` return in R?

1
done
done
by
מיין לפי