Authors

Daniel McLaughlin 19

Discussion 2 - Econometrics Latest

12.09.2023

Discussion 2 I’ve chosen two datasets - “USarrests” and “statepov”. USarrests summarizes state-level crime and population characteristics in the year 1973. It’s a cross-sectional dataset. I want to look at the relationship between urban...

2040 sym R (2316 sym/19 pcs) 4 img

Daniel Schick 19

Econometric_Discussion_3 Latest

12.09.2023

library("AER") ## Warning: package 'AER' was built under R version 4.2.3 ## Loading required package: car ## Loading required package: carData ## Loading required package: lmtest ## Warning: package 'lmtest' was built under R version 4.2.3 ##...

2062 sym R (78144 sym/80 pcs) 2 img

Cam Turner 19

Turner_Discussion2 Latest

13.09.2023

Part I: Defining & Plotting Datasets Find pre-loaded datasets in R data() Cross Sectional (cars) This dataset describes the speed at which cars were travelling and the distance it took them to come to a stop at said speed. The data was collected...

2202 sym Python (2849 sym/21 pcs) 2 img

Joe Stanley 19

Test Publishing Latest

19.09.2023

Do your work here. library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.3 ✔ readr 2.1.4 ## ✔ forcats 1.0.0...

26 sym R (1648 sym/4 pcs)

Discussion_3 Latest

18.09.2023

Part I Data Types: data classes or types are the ways in which we categorize objects in R. Data classes are basically storage for the type of objects or variables that we need when manipulating data. For example, lets say we are importing a data...

3987 sym 4 img

SUPERVISED LEARNING Latest

24.09.2023

File ini merupakan handson TSA dari kelas B. Mohon di koreksi jika ada kesalahan. Dalam file ini akan berisikan 3 BAB sesuai rules dari tutor, yaitu : 1. Tahap Explorasi data 2. Tahap Modeling 3. Tahap Ide Bisnis *************** SUPERVISED...

3813 sym R (9785 sym/22 pcs) 6 img

Pinta Luis 19

ASI Latest

30.11.2023

Consideraremos el siguiente ejemplo: Se considera una muestra aleatoria de un grupo de n = 20 estudiantes de la carrera de Matemática de la ESPOCH, dieron su aceptación o no en agrado a las siguientes asignaturas: Lógica Matemática (LM)...

2772 sym R (8128 sym/67 pcs) 2 img

vqtv 19

NV1 Latest

09.01.2024

MKT 410: Software Tools in Marketing (Marketing Analytics) General Information Instructor: Sungjin Kim (sungjin.kim@hawaii.edu) Office Hours: Friday 3-4 PM or by appointment Prerequisites BUS 312 Principles of Marketing BUS 310 Statistical...

954 sym

Alexander Simon 19

DATA607 Assignment1 Latest

04.02.2024

Introduction This assignment is based on an article called “How ‘Qi’ and ‘Za’ Changed Scrabble” by Oliver Roeder that was posted on fivethirtyeight.com in April 2017. The article discusses how the introduction of 2 high-value words,...

4772 sym Python (2695 sym/12 pcs) 1 img

Algoritma Iteratif Latest

01.05.2024

Contoh (Iteratif for) Baca data xi (i=1,2,3…,n) i=1 i=i+1 Jika xi < x1 , lanjutkan ke langkah 5. Selainnya, pertukarkan nilai x1 dengan xi Jika i < n , lanjutkan ke langkah 3. Selainnya, print x1. x=c(15,18,10,8,20) n=length(x) for(i in 2:n){...

880 sym