Fundamentals of Analytics
About
GitHub
Twitter
  • Assignment A01:Linear regression

    Jul 9, 2021 · 14 min read  ·
    Share on:
    Assignment A01:Linear regression

    Diamonds The diamonds dataset that we will use in this application exercise consists of prices and quality information. The variables in the diamonds dataset are price: price in US dollars carat: weight of the diamond cut: quality of the cut (Fair, Good, Very Good, Premium, Ideal) color: diamond color, from J (worst) …

    Read More
  • Final Project

    Jun 22, 2021 · 223 min read  ·
    Share on:

    Data exploration of monthly rent index in USA for 2010 - 2017 Introduction: Problem Statement: The goal of this project is to investigate data for median rent estimates (rent index) and rent per square foot over a 7-year period across counties and metropolitan areas in the United States in order to help citizens …

    Read More
  • A05 Assignment: EDA2

    Jun 18, 2021 · 15 min read  ·
    Share on:

    Exploratory Data Analysis of the Hotel Booking Demand Introduction This data set contains booking information for a city hotel and a resort hotel, including when the booking was made, length of stay, number of adults, children, and/or babies, and number of available parking spaces, among other things. All personally …

    Read More
  • Fitting and interpreting models

    Jun 15, 2021 · 4 min read  ·
    Share on:

    #Data: Paris Paintings pp <- read_csv("paris-paintings.csv", na = c("n/a", "", "NA")) ## ## -- Column specification -------------------------------------------------------- ## cols( ## .default = col_double(), ## name = col_character(), ## sale = col_character(), ## lot = …

    Read More
  • A03 Assignment EDA1

    Jun 4, 2021 · 10 min read  ·
    Share on:

    Import Lego_sales.csv file In this assignment we will work with the tidyverse package as usual.We will simulate the data from Lego sales for a sample of customers who bought Legos in the US. The dataset is called lego_sales and is loaded in the data folder. library(tidyverse) ## -- Attaching packages …

    Read More
  • Data IO

    Jun 1, 2021 · 6 min read  ·
    Share on:

    Import Nobel.csv file library(tidyverse) ## -- Attaching packages --------------------------------------- tidyverse 1.3.1 -- ## v ggplot2 3.3.3 v purrr 0.3.4 ## v tibble 3.1.1 v dplyr 1.0.6 ## v tidyr 1.1.3 v stringr 1.4.0 ## v readr 1.4.0 v forcats 0.5.1 ## -- Conflicts ------------------------------------------ …

    Read More
  • Data IO- Data Recoding

    Jun 1, 2021 · 2 min read  ·
    Share on:

    Import and Transform religion-income .csv file library(tidyverse) ## -- Attaching packages --------------------------------------- tidyverse 1.3.1 -- ## v ggplot2 3.3.3 v purrr 0.3.4 ## v tibble 3.1.1 v dplyr 1.0.6 ## v tidyr 1.1.3 v stringr 1.4.0 ## v readr 1.4.0 v forcats 0.5.1 ## -- Conflicts …

    Read More
  • Assignment A02

    May 28, 2021 · 15 min read  ·
    Share on:

    Exploring Phishing Dataset for Machine Learning with Tidyverse. Description: The Phishing dataset is downloaded from kaggle website. Dataset information This dataset contains 48 features taken from 5000 phishing web pages and 5000 legitimate web pages downloaded between January and May and June 2015. Tidyverse and …

    Read More
  • Data Wrangling using tidyverse

    May 25, 2021 · 6 min read  ·
    Share on:

    Import the Hotels.csv file library(tidyverse) ## -- Attaching packages --------------------------------------- tidyverse 1.3.1 -- ## v ggplot2 3.3.3 v purrr 0.3.4 ## v tibble 3.1.1 v dplyr 1.0.6 ## v tidyr 1.1.3 v stringr 1.4.0 ## v readr 1.4.0 v forcats 0.5.1 ## -- Conflicts ------------------------------------------ …

    Read More
  • Fun with R

    May 25, 2021 · 2 min read  ·
    Share on:

    Variables and Numbers x<- 1 y = 2 3 -> z x+y ## [1] 3 x*z ## [1] 3 y/x ## [1] 2 Vectors a <- 0:10 print(a) ## [1] 0 1 2 3 4 5 6 7 8 9 10 b <- 10:-4 print(b) ## [1] 10 9 8 7 6 5 4 3 2 1 0 -1 -2 -3 -4 class(a) ## [1] "integer" str(a) ## int [1:11] 0 1 2 3 4 5 6 7 8 9 .

    Read More
    • ««
    • «
    • 1
    • 2
    • »
    • »»

Featured Posts

  • Assignment A01:Linear regression

Recent Posts

  • Assignment A01:Linear regression
  • Final Project
  • A05 Assignment: EDA2
  • Fitting and interpreting models
  • A03 Assignment EDA1
  • Data IO
  • Data IO- Data Recoding
  • Assignment A02

Categories

DATA-ANALYTICS 8 FUN-WITH-R 1 GGPLOT2 1 LINEAR-REGRESSION 1
Fundamentals of Analytics

Copyright 2025 FUNDAMENTALS OF ANALYTICS. All Rights Reserved