Publications by IvanTikhonov
DATA607_Project2
The goal of this assignment is to give you practice in preparing different datasets for downstream analysis work. Your task is to: (1) Choose any three of the “wide” datasets identified in the Week 6 Discussion items. (You may use your own dataset; please don’t use my Sample Post dataset, since that was used in your Week 6 assignment!) ...
2831 sym R (8560 sym/21 pcs) 1 img
Document
#11 and #14 on page 303 of probability text 11. A company buys 100 lightbulbs, each of which has an exponential lifetime of 1000 hours. What is the expected time for the first of these bulbs to burn out? (See Exercise 10.) Let Xi be the independent random variable for light bulb i. Then E[Xi]=1/λi=1000, because the expected lifetime of a bu...
2200 sym
DATA607_Assignment_5
Pick three of your favorite books on one of your favorite subjects. At least one of the books should have more than one author. For each book, include the title, authors, and two or three other attributes that you find interesting. Take the information that you’ve selected about these three books, and separately create three files which sto...
1338 sym R (1476 sym/7 pcs) 3 tbl
DATA607_Assignment5
Pick three of your favorite books on one of your favorite subjects. At least one of the books should have more than one author. For each book, include the title, authors, and two or three other attributes that you find interesting. Take the information that you’ve selected about these three books, and separately create three files which sto...
1335 sym R (825 sym/4 pcs) 3 tbl
DATA605 Assignment9
11 The price of one share of stock in the Pilsdorff Beer Company (see Exercise 8.2.12) is given by Yn on the nth day of the year. Finn observes that the differences Xn = Yn+1 − Yn appear to be independent random variables with a common distribution having mean µ = 0 and variance σ 2 = 1/4. If Y1 = 100, estimate the probability that Y365 i...
1211 sym
Assignment – Tidying and Transforming Vaccination Data
library(tidyr) library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union library(stringr) library(tibble) Read the data from github: covid.data<-read.csv("https://ra...
1640 sym R (5004 sym/25 pcs)
DATA607_Project3
library(readr) library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union library(tidyr) library(stringr) library(ggplot2) library(magrittr) ## ## Attaching packa...
1347 sym R (16098 sym/32 pcs) 10 img
DATA605 Assignment10
Smith is in jail and has 1 dollar; he can get out on bail if he has 8 dollars. A guard agrees to make a series of bets with him. If Smith bets A dollars, he wins A dollars with probability .4 and loses A dollars with probability .6. Find the probability that he wins 8 dollars before losing all of his money if he bets 1 dollar each time (timi...
914 sym
DATA607_Assignment9
The New York Times web site provides a rich set of APIs, as described here: https://developer.nytimes.com/apis You’ll need to start by signing up for an API key. Your task is to choose one of the New York Times APIs, construct an interface in R to read in the JSON data, and transform it into an R DataFrame. Libraries # Loading the necessary...
468 sym R (1191 sym/9 pcs)
DATA607_Assignment10
Sentiment Analysis “Sentiment Analysis is the process of computationally identifying and categorizing opinions in a piece of text, especially in order to determine whether the writer’s attitude towards a particular topic, product, etc. is positive, negative, or neutral.” - Oxford Dictionary The purpose of this project is two-fold: First...
9990 sym R (19500 sym/89 pcs) 10 img