Authors
Data Dive - Summaries Latest
23.01.2024
options(repos = c(CRAN = "https://cran.rstudio.com")) Loading the ‘Supermart’ CSV file located on desktop data <- read.csv("/Users/ramyaamudapakula/Desktop/Sem1/Statistics/Data Proposal/Supermart.csv") Here, we are reading a CSV file named...
4661 sym R (7503 sym/36 pcs) 4 img 5 tbl
About Me Latest
25.01.2024
my avatar About me Hi, I’m a business student majoring Business Administration at CSUB. My current objectives is to finish my undergraduate studies to pursue my graduate studies. My career goal is to become an elementary school teacher. Academic...
716 sym 1 img
Programování v R seminármí práce Latest
01.02.2024
Sestavení písničky Monika Kučerová 2024-01-02 O aplikaci Tato aplikace umí následující: Prozradí vám, o kolik půltonů vyšší nebo nižší je zvuk, který vydá nějaká z „paciček” kalimby vzhledem k pevně danému...
947 sym 2 img
Dhanya Nair 14
DATA607 - Week 1 Assignment Latest
10.02.2024
Introduction I have taken the file from the link https://data.fivethirtyeight.com/ I have selected the soccer predictions data and the info is at:https://github.com/fivethirtyeight/data/tree/master/soccer-spi library(dplyr) ## ## Attaching...
415 sym R (712 sym/6 pcs)
Shresta 14
Week 2 | Data Dive — Summaries Latest
18.02.2024
knitr::opts_chunk$set(echo = TRUE) Load necessary libraries library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.4...
640 sym R (4431 sym/27 pcs) 4 img
Nirmal Patel 14
Project1_NirmalPatel Latest
24.02.2024
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...
639 sym Python (14659 sym/41 pcs) 9 img
CESIA YASMIN LEON REYES 14
Práctica de matrices en R y Publicación en Rpubs Latest
13.03.2024
##Creacion de Matrices Matriz y ##Generacion de la matriz y matriz_y<-matrix(data = c(20,30,36,24,40), nrow=5, ncol=1,byrow=TRUE) colnames(matriz_y)<-c("y") print(matriz_y) ## y ## [1,] 20 ## [2,] 30 ## [3,] 36 ## [4,] 24 ## [5,] 40...
143 sym
David López 14
P1.1. - Caso práctico Latest
16.03.2024
Caso práctico Cread un conjunto de datos inventado con R. Debe contener treinta observaciones (quince para hombres y quince para mujeres) para seis variables con estas características: Identificador, Edad, Genero, Tratamiento, Peso, Estatura...
934 sym
Discussion 1 - Iris Dataset & Types of Economic Data Latest
16.03.2024
1.1 How many cases were included in the data? There are 150 cases in this case. nrow(iris) ## [1] 150 From the lecture, we know that nrow(dataset) is used to count the amount of observations in a data set. In this case, we are counting cases in...
2453 sym Python (12458 sym/21 pcs) 2 img