Publications by Viktoria Sergeevna Frolova
Stat_reg_Frolova
library(xlsx) library(dplyr) library(purrr) library(magrittr) Очищаем рабочее пространство rm(list=ls()) Импортируем данные по регионам stat_index<-read.xlsx("stat_data.xlsx", sheetIndex = 3) Убираем даные по России и лишние строки вниз. Отбираем пе�...
3200 sym R (11160 sym/76 pcs) 2 img
Religion_Frolova
##Cамостоятельная работа library("factoextra") ## Loading required package: ggplot2 ## Welcome! Want to learn more? See two factoextra-related books at https://goo.gl/ve3WBa library("FactoMineR") library("gplots") ## ## Attaching package: 'gplots' ## The following object is masked from 'package:stats': ## ## lowess library...
2267 sym R (8720 sym/55 pcs) 16 img
Children_Frolova
Самостоятельная работа 2. library("factoextra") ## Loading required package: ggplot2 ## Welcome! Want to learn more? See two factoextra-related books at https://goo.gl/ve3WBa library("FactoMineR") library("gplots") ## ## Attaching package: 'gplots' ## The following object is masked from 'package:stats': ## ## lowess libra...
4799 sym R (8192 sym/50 pcs) 16 img
stat_index
#Статистический индекс Импортируем библиотеки library(xlsx) library(dplyr) library(purrr) library(magrittr) Очищаем рабочее пространство rm(list=ls()) Импортируем данные по регионам stat_index<-read.xlsx("stat_data.xlsx", sheetIndex = 3) Убираем д�...
1552 sym R (6582 sym/38 pcs) 4 img
sub_index
library(sjlabelled) library(tibble) library(dplyr) library(haven) df<-read_sav("IDB_2022_deti_Altayskiy_kray.sav", user_na = TRUE) df_codebook <- enframe(get_label(df)) df <- df %>% mutate(Q27 = rowSums(across (`Q27_1` : `Q27_5`))) table(df$Q27) ## ## 0 1 2 3 4 5 ## 2241 3070 2067 4887 7522 15762 df <- df %>%...
1188 sym R (4575 sym/31 pcs)
File 1
R Markdown This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com. When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within t...
591 sym 1 img
Задание 3
Задание 1 Первым шагом загружаем библиотеку dplyr, содержащую набор данных «mtcars». Далее с помощью функции «filter» отбираем наблюдения (автомобили), имеющие 8 цилиндров и количество лошадиных сил ...
1107 sym R (8827 sym/14 pcs)