Publications by Karol Orozco

Data-Wrangling-in-R

15.12.2021

### Tible from data set tibb <- as_tibble(CO2) tibb ## # A tibble: 84 x 5 ## Plant Type Treatment conc uptake ## <ord> <fct> <fct> <dbl> <dbl> ## 1 Qn1 Quebec nonchilled 95 16 ## 2 Qn1 Quebec nonchilled 175 30.4 ## 3 Qn1 Quebec nonchilled 250 34.8 ## 4 Qn1 Quebec nonchilled 350 37.2 ## 5 Q...

333 sym R (47882 sym/85 pcs)

Fundamental- Final project

09.12.2021

Association Rules Foundations of Data Science with R Karol Orozco, Charlene Ewing Motivation: The Usefulness of Market Basket Analysis Companies’ need for data processing has generated a new science, methodology, and tools to analyze large masses of data such as Big Data or data mining. This science has developed methods and predictive algorith...

11069 sym R (26884 sym/50 pcs) 4 img 2 tbl

Dashboard

07.12.2021

Marketing Basket Analysis Findings Column Orders Departments Column Bestsellers Products Less Popular Products --- title: "Marketing Basket Analysis" output: flexdashboard::flex_dashboard: orientation: columns vertical_layout: fill source_code: embed theme: journal --- ```{r setup, include=FALSE} library...

181 sym R (8290 sym/1 pcs) 3 img 2 tbl

Basket Analysis

05.12.2021

Retail Store Report FALL 502- Data Visualization Karol Orozco, Maribel Mendez Objective Our goal is to earn customer loyalty and increase revenue through machine-readable marketing data, which allows us to create a user behavior profile and more accurately predict revenue. Data Orders- Time and Day So, from the above graph, its clear that Maxi...

5132 sym R (14440 sym/6 pcs) 2 img 2 tbl

OPTION 2: (Challenge) Recreate

18.11.2021

OPTION 2: (Challenge) Recreate OPTION 2: (Challenge) Recreate Libraries The Data Data Wrangling Import Map Package Join to Your Data Make your first attempt at creating a graphic Color palette Brainstorming/Planning Update your plot Final polished plot Happy Thanksgiving! Karol Orozco 11/11/2021 Libraries ## library(tidyverse) ## library(g...

2308 sym R (25851 sym/42 pcs) 5 img

Squirrels Census Assignment

29.09.2021

DATA 502: Homework W#4 Karol Orozco The Task Using the dataset from below, present three ggplot2 plots that attempt to answer questions about the data that you think are interesting. The focus of this assignment is exploration and experimentation. Concentrate on answering each question in a variety of ways and exploring the functionality of ggpl...

489 sym R (5891 sym/9 pcs) 4 img

Intro to ggplot

16.09.2021

Part 1: Learning about your data Step 1: load the data library(tidyverse) data("diamonds") Step 2 Learn about your data str(diamonds) ## tibble [53,940 x 10] (S3: tbl_df/tbl/data.frame) ## $ carat : num [1:53940] 0.23 0.21 0.23 0.29 0.31 0.24 0.24 0.26 0.22 0.23 ... ## $ cut : Ord.factor w/ 5 levels "Fair"<"Good"<..: 5 4 2 4 2 3 3 3 1 ...

611 sym R (3172 sym/21 pcs) 12 img

ggplot practice 2

23.09.2021

data("diamonds") str(diamonds) ## tibble [53,940 x 10] (S3: tbl_df/tbl/data.frame) ## $ carat : num [1:53940] 0.23 0.21 0.23 0.29 0.31 0.24 0.24 0.26 0.22 0.23 ... ## $ cut : Ord.factor w/ 5 levels "Fair"<"Good"<..: 5 4 2 4 2 3 3 3 1 3 ... ## $ color : Ord.factor w/ 7 levels "D"<"E"<"F"<"G"<..: 2 2 2 6 7 7 6 5 2 5 ... ## $ clarity: ...

935 sym R (1720 sym/13 pcs) 10 img

Recreation

14.10.2021

Recreation Karol O 10/12/2021 The Data # Import data vreg<-read.csv("https://raw.githubusercontent.com/fivethirtyeight/data/master/ voter-registration/new-voter-registrations.csv", header=TRUE) # Level the Month variable so that its in the right order (ie not alphabetical) vreg$Month<-factor(vreg$Month, levels=c("Jan", "Feb", "Mar", "Apr",...

106 sym R (9801 sym/5 pcs) 4 img

DataViz Scales

21.10.2021

iah <- read_csv("http://vis.cwick.co.nz/data/iah-summary.csv") ## Rows: 154 Columns: 7 ## -- Column specification -------------------------------------------------------- ## Delimiter: "," ## chr (1): DayOfWeek ## dbl (6): DepHour, avg_delay, avg_delay_delayed, prop_over_15, nflights, ndests ## ## i Use `spec()` to retrieve the full column s...

233 sym R (4830 sym/34 pcs) 14 img