Зміст курсу
Вступ до R: Частина 1
Вступ до R: Частина 1
Підсумок
Якщо ви хочете підрахувати кількість входжень кожного значення у векторі, функція summary()
є саме тим, що вам потрібно.
# Factor variable curr_f <- factor(c('USD', 'EUR', 'AUD', 'NOK', 'CHF', 'EUR', 'AUD', 'EUR')) # Show summary summary(curr_f)
Remember, the sequence of the levels reported by summary()
corresponds to the order defined when you used the factor()
function. If no order is defined, it defaults to numerical or alphabetical order.
Завдання
For the grades data mentioned earlier, compute the frequency of each grade within the grades_f
factor.
Дякуємо за ваш відгук!
Підсумок
Якщо ви хочете підрахувати кількість входжень кожного значення у векторі, функція summary()
є саме тим, що вам потрібно.
# Factor variable curr_f <- factor(c('USD', 'EUR', 'AUD', 'NOK', 'CHF', 'EUR', 'AUD', 'EUR')) # Show summary summary(curr_f)
Remember, the sequence of the levels reported by summary()
corresponds to the order defined when you used the factor()
function. If no order is defined, it defaults to numerical or alphabetical order.
Завдання
For the grades data mentioned earlier, compute the frequency of each grade within the grades_f
factor.
Дякуємо за ваш відгук!
Підсумок
Якщо ви хочете підрахувати кількість входжень кожного значення у векторі, функція summary()
є саме тим, що вам потрібно.
# Factor variable curr_f <- factor(c('USD', 'EUR', 'AUD', 'NOK', 'CHF', 'EUR', 'AUD', 'EUR')) # Show summary summary(curr_f)
Remember, the sequence of the levels reported by summary()
corresponds to the order defined when you used the factor()
function. If no order is defined, it defaults to numerical or alphabetical order.
Завдання
For the grades data mentioned earlier, compute the frequency of each grade within the grades_f
factor.
Дякуємо за ваш відгук!
Якщо ви хочете підрахувати кількість входжень кожного значення у векторі, функція summary()
є саме тим, що вам потрібно.
# Factor variable curr_f <- factor(c('USD', 'EUR', 'AUD', 'NOK', 'CHF', 'EUR', 'AUD', 'EUR')) # Show summary summary(curr_f)
Remember, the sequence of the levels reported by summary()
corresponds to the order defined when you used the factor()
function. If no order is defined, it defaults to numerical or alphabetical order.
Завдання
For the grades data mentioned earlier, compute the frequency of each grade within the grades_f
factor.