1. (Challenge: C1 + C2) The datafile Stock_Report.csv contains data on the stock for a supermarket. There are 4 variables:

    • The department of the product
    • The name of the product
    • The value in loyalty points of the product
    • The cost of the product

    Answer the following questions:

    • How many products are there in each department?
    • How much variation is there in the price of the products?
    • Is this similar to the loyalty points value?
    • Is there a linear relationship between the loyalty points and the price of products?
  2. Create the data set “first_data_set” from the notes and export to csv.

  3. Download the files JJJ.csv and MMM.csv import them in to R.

  4. View both the MMM and JJJ data sets.

  5. View the structure of the MMM and JJJ data sets using the str command.

  6. Obtain the mean age, height in metres and weight in kg for the observations of the MMM and JJJ datasets.

  7. Obtain the mean age, height in metres and weight in kg for the observations of the MMM and JJJ datasets compartmentalising your output by sex (you’ll need to use the by function).

  8. Download the file math_tests.csv, import it in to R and output a frequency table of teachers against pass_fail.

  9. Obtain correlation tables for all the numerical values in JJJ and MMM (using 2 separate approaches (one of which will require you to download a package).

  10. Do a regression analysis of the variable height_in_metres against weight_in_kg and savings_in_poundsfor the data sets JJJ and MMM.

  11. Download the data set math.csv and run an ANOVA test to see if the grades depends on the professor.

  12. Obtain a histogram for the variables weight_in_kg for the data sets JJJ and MMM.

  13. Obtain a scatter plot of weight_in_kg against height_in_metres for the data sets JJJ and MMM

  14. Output all of the above graphs to a pdf file.

  15. (Challenge: C3) The datafiles Dates_1996.csv and Prices_1996.csv contain data for holidays taken in 1996. There are 3 variables in Dates_1996.csv:

    • The ID
    • Start Date
    • End Date

    There are 2 variables in Prices.csv:

    • The ID
    • The Price

    The data file Holidays_1995.csv contains data for holidays taken in 1995. There are 4 variables:

    • The ID
    • Start Date
    • End Date
    • The Price

    Obtain a report regarding the holidays taken in 1995 and 1996. Pay particular attention to the price per day of a holiday.

  16. Create the following data set and execute a command that only chooses elements from the data set starting with the letter D:

    Dopey
    Sneezey
    Sleepy
    Happy
    Grumpy
    Bashful
    Doc
    
  17. Concatenate the JJJ and MMM data sets.

  18. Obtain the elements of the previous data set (concatenation of JJJ and MMM) for which the age is less than 18.

  19. Merge the following data sets:

    Name, Age
    Billy, 24
    Bob, 23
    
    Name, Weight
    Billy, 75
    Bob, 80
    
  20. Create a single data set that includes the bmi of the observations from the MMM and JJJ data sets

  21. Ensure there are just two type of observations for the variables sex in MMM and JJJ: M or F.

  22. Create a copy of the concatenated data set (of JJJ and MMM) with just the names and bmis of every observation.

  23. Rename the variable sex as gender in the data sets JJJ and MMM.

  24. Download the file birthday_money.csv, import it and output a data set with a running total as well as a yearly difference.

  25. Download the file birthdays.csv import it and sort the data set by date of birth.

  26. (Challenge: C4) Create a macro in SAS that outputs the first \(k\) prime numbers to a csv file (do so without using any built in test for primality). Build the macro so that it takes two input arguments:

    • \(k\)
    • a string: the name of the output file.
  27. Create a (single) data set containing the name of the observations from “JJJ” and “MMM” as well as a new variable which is “Y” if the individual is clinically obese and “N” otherwise.

  28. Create a (single) data set containing the total number of birthday candles used throughout the lives of every individual from both “JJJ” and “MMM”.

  29. Obtain the first even numbers less than 240.

  30. Create a macro that outputs a scatter plot of height against weight for observations in the “JJJ” and “MMM” data sets? Modify the macro so that it outputs the plot to a pdf file.

  31. Create a macro that computes the left over life savings after a given quantity of spending on a given quantiy of shopping trips from the “JJJ” data set.

  32. Modify the above macro so that a default value is given to spend of 430 and a default value of 3 trips.

  33. Use the ‘%let’ statement to pass a value to the above macro.

  34. Use the ‘%put’ statement to show all the local and global variables.

  35. Modify the above macro so that two different data sets are created depending on whether or not spend is positive or negative. Output a message to the log if the spend is 0.

  36. Create a macro that creates 15 data sets each with updated savings in pounds for observations in the “JJJ” and “MMM” data sets for varying values for the number of trips (1 to 15).

  37. Download the files “File_1.csv - File_200.csv” and create a macro that automatically imports them.

  38. (Challenge: C5) Find an example and illustrate the use of one (or more) of the following concepts in SAS:

    • sql
    • optmax
    • function
  39. Using proc sql, create a copy of the MMM and JJJ data sets, including all the variables.

  40. Using proc sql, create the previous copies selecting just the variables, Name, Age, Sex, random number, as well as the bmi of the observations.

  41. For the following data set:

    Var1, Var2, Var3, Var4, Var5
    A, 1, A, 2, B
    A, 1, A, 2, B
    B, 1, A, 1, C
    C, 2, B, 2, D
    C, 2, C, 1, E
    
    1. Create a copy of the data set removing complete duplicate rows.
    2. Create a copy of the data set removing duplicates of Var2.
    3. Create a copy of the data set removing duplicates of Var3 and Var4.
    4. Create a copy of the data set selecting only observations where Var2 $>$ Var4.
    5. Create a copy of the data set ordering by Var1.
    6. Create a data set containing the mean, std, max, min and variance of Var4 and Var2 by Var1.
  42. Download the data sets dogs.csv and cats.csv use proc sql to:

    1. create an inner join.
    2. a left outer join.
    3. a right outer join.
    4. a full outer join.
  43. Create a new function entitled “Gsum” and compute the geometric sum \(\sum_{k=0}^ni^k\) for the following data set:

    n,i
    1,1
    2,1
    3,2
    4,2
    5,2
    6,2
    
  44. Minimise the function \(x^2-x-2y-xy+y^2\).

  45. Minimise the above function for \(x\leq 0\) and \(y\geq 2\).

  46. Solve the following optimisation problem:

    Maximise: \(f(x_1,x_2,x_3)=x_1+x_2+x_3\) subject to:

  47. (Class Test 2012-2013) Create a data set with two variables: “Week” and “Ranking”. For every week of the MAT013 course (1-5 including this class test) give a ranking of your enjoyment of each week of the course (1 being the best). Write some code (in both SAS and R) to sort this data set in descending order of the enjoyment ranking.

  48. (Class Test 2012-2013) Solve the following optimisation problem:

    Maximize
    
    Subject to:
    
  49. (Class Test 2012-2013) The files Game_1.csv, Game_2.csv, Game_3.csv, Game_4.csv, Game_5.csv, Game_6.csv contain data for guesses of the game “2/3rds of the average”:

    “All individuals must guess a number between 0 and 100 (inclusive). The winner of the game is the guess that is closest to two thirds of the average of all guesses.”

    1. Obtain histograms showing the distribution of guesses in each individual game and over all games (i.e. produce 7 plots).
    2. Identify the winning guess in each individual game and over all games.
    3. Every game is played with a different number of players, obtain a scatter plot of the winning guesses against the number of players (include the overall).
    4. Comment on the relationship (if any) between the number of players and the winning guess.
  50. (Class Test 2013-2014) Write a macro that will create a separate pdf file of a scatter plot for every data set in the compressed directory scatterdata.zip. All files in the directory contain two columns of numerical data. Use the name of each file as the name of the pdf file.

  51. (Class Test 2013-2014)

    1. Write code that will obtain \(k\) random points \((x,y)\) where \(x,y\) are uniformly sampled between 0 and 1.
    2. Identify how many of these points satisfy \(x^2+y^2\leq 1\) (this number will be referred to as \(N=N(k)\)).
    3. Plot \(\frac{4N(k)}{k}\) for \(1\leq k\leq 5000\) and comment on the result.