SlideShare a Scribd company logo
Stat405                Problem solving


                                Hadley Wickham
Wednesday, 16 September 2009
Homework
                   Great improvement. A few tips:
                   Headings should be in sentence case, and be a
                   single sentence summary of the section.
                   Include ggsave calls in your code.
                   Don’t use " and " to get “ and ”.
                   Use ` ` and ' '.
                   (Also, I think I’ve been grading quite hard. Think
                   of a 5 as an A+, a 4 as an A, and a 3 as an A-/B+)


Wednesday, 16 September 2009
Feedback
                   Speed seems about right.
                   Frustration is a natural part of the learning
                   experience. You will get better! In
                   particularly, it will get easier to find
                   interesting plots (helps to start homework
                   early!)
                   Split homework help session? Also, feel
                   free to email me to set up time to talk.


Wednesday, 16 September 2009
1. Recap of problem
               2. Task
               3. Basic strategy
               4. Turning ideas into code




Wednesday, 16 September 2009
Slots
                   Casino claims that slot machines have
                   prize payout of 92%. Is this claim true?
                   mean(slots$payoff)
                   t.test(slots$prize, mu = 0.92)
                   qplot(prize, data = slots, binwidth = 1)
                   Can we do better?


Wednesday, 16 September 2009
Bootstrapping
                   Slot machine is basically a random
                   number generator - three numbers
                   between 1 and 7. We can generate a new
                   number by sampling from the data.
                   Doing that lots of times, and calculating
                   the payoff should give us a better idea of
                   the payoff. But first we need some way to
                   calculate the prize from the windows


Wednesday, 16 September 2009
DD                DD   DD   800
                                               windows <- c("DD", "C", "C")
                7              7    7    80
                                               # How can we calculate the
            BBB BBB BBB                  40    # payoff?
                B              B    B    10
                C              C    C    10
           Any bar Any bar Any bar        5
                C              C    *     5
                C              *    C     5
                C              *    *     2
                 *             C    *     2    DD doubles any winning
                                               combination. Two DD
                 *             *    C     2    quadruples.
Wednesday, 16 September 2009
Your turn


                   There are three basic cases of prizes.
                   What are they? Take 3 minutes to
                   brainstorm with a partner.




Wednesday, 16 September 2009
Cases

                   1. All windows have same value
                   2. A bar (B, BB, or BBB) in every window
                   3. Cherries and diamonds




Wednesday, 16 September 2009
Same values




Wednesday, 16 September 2009
Same values

                   1. Determine that all windows are the
                      same. How?




Wednesday, 16 September 2009
Same values

                   1. Determine that all windows are the
                      same. How?
                   2. Given single window, look up prize
                      value. How?




Wednesday, 16 September 2009
Same values

                   1. Determine that all windows are the
                      same. How?
                   2. Given single window, look up prize
                      value. How?

                                    With a partner, brainstorm
                                    for 2 minutes on how to
                                    solve one of these problems
Wednesday, 16 September 2009
# Same value
         same <- length(unique(windows)) == 1

         # OR
         same <- windows[1] == windows[2] &&
                 windows[2] == windows[3]

         if (same) {
           # Lookup value
         }



Wednesday, 16 September 2009
If
                   if (cond) expression
                   Cond should be a logical vector of length 1
                   Use && and || to combine sub-conditions
                               Not & and | - these work on vectors
                               && and || are “short-circuiting”: they
                               do the minimum amount of work


Wednesday, 16 September 2009
if (TRUE) {
       # This will be run
     }

     if (FALSE) {
       # This won't be run
     } else {
       # This will be
     }

     # Single line form: (not recommended)
     if (TRUE) print("True!)
     if (FALSE) print("True!)


Wednesday, 16 September 2009
if (TRUE) {
       # This will be run
     }

     if (FALSE) {
       # This won't be run
     } else {
       # This will be
     }
         Note indenting.
         Very important!
     # Single line form: (not recommended)
     if (TRUE) print("True!)
     if (FALSE) print("True!)


Wednesday, 16 September 2009
x <- 5
     if (x < 5) print("x < 5")
     if (x == 5) print("x == 5")

     x <- 1:5
     if (x < 3) print("What should happen here?")

     if (x[1] < x[2]) print("x1 < x2")
     if (x[1] < x[2] && x[2] < x[3]) print("Asc")
     if (x[1] < x[2] || x[2] < x[3]) print("Asc")




Wednesday, 16 September 2009
if (window[1] == "DD") {
       prize <- 800
     } else if (windows[1] == "7") {
       prize <- 80
     } else if (windows[1] == "BBB") ...

     # Or use                  subsetting
     c("DD" =                  800, "7" =   80,   "BBB"   =   40)
     c("DD" =                  800, "7" =   80,   "BBB"   =   40)["BBB"]
     c("DD" =                  800, "7" =   80,   "BBB"   =   40)["0"]
     c("DD" =                  800, "7" =   80,   "BBB"   =   40)[window[1]]



Wednesday, 16 September 2009
Your turn


                   Complete the previous code so that if all
                   the values in win are the same, then prize
                   variable will be set to the correct amount.




Wednesday, 16 September 2009
All bars

                   How can we determine if all of the
                   windows are B, BB, or BBB?
                   (windows[1] == "B" ||
                    windows[1] == "BB" ||
                    windows[1] === "BBB") && ... ?




Wednesday, 16 September 2009
All bars

                   How can we determine if all of the
                   windows are B, BB, or BBB?
                   (windows[1] == "B" ||
                    windows[1] == "BB" ||
                    windows[1] === "BBB") && ... ?

                                   Take 2 minutes to brainstorm
                                   possible solutions
Wednesday, 16 September 2009
windows[1] %in% c("B", "BB", "BBB")
     windows %in% c("B", "BB", "BBB")

     allbars <- windows %in% c("B", "BB", "BBB")
     allbars[1] & allbars[2] & allbars[3]
     all(allbars)


     # See also ?any for the complement




Wednesday, 16 September 2009
Your turn

                   Complete the previous code so that the
                   correct value of prize is set if all the
                   windows are the same, or they are all
                   bars




Wednesday, 16 September 2009
payoffs <- c("DD" = 800, "7" = 80, "BBB" = 40,
       "BB" = 25, "B" = 10, "C" = 10, "0" = 0)

     same <- length(unique(windows)) == 1
     allbars <- all(windows %in% c("B", "BB", "BBB"))

     if (same) {
       prize <- payoffs[windows[1]]
     } else if (allbars) {
       prize <- 5
     }



Wednesday, 16 September 2009
Cherries

                   Need numbers of cherries, and numbers
                   of diamonds (hint: use sum)
                   Then need to look up values (like for the
                   first case) and multiply together




Wednesday, 16 September 2009
cherries <- sum(windows == "C")
         diamonds <- sum(windows == "DD")

         c(0, 2, 5)[cherries + 1] *
           c(1, 2, 4)[diamonds + 1]




Wednesday, 16 September 2009
payoffs <- c("DD" = 800, "7" = 80, "BBB" = 40,
       "BB" = 25, "B" = 10, "C" = 10, "0" = 0)

     same <- length(unique(windows)) == 1
     allbars <- all(windows %in% c("B", "BB", "BBB"))

     if (same) {
       prize <- payoffs[windows[1]]
     } else if (allbars) {
       prize <- 5
     } else {
       cherries <- sum(windows == "C")
       diamonds <- sum(windows == "DD")

          prize <- c(0, 2, 5)[cherries + 1] *
            c(1, 2, 4)[diamonds + 1]
     }

Wednesday, 16 September 2009
Writing a function

                   Now we need to wrap up this code in to a
                   reusable fashion. We need a function
                   Have used functions a lot, and this will be
                   our first time writing one




Wednesday, 16 September 2009
Basic structure
                   • Name
                   • Input arguments
                        • Names/positions
                        • Defaults
                   • Body
                   • Output value


Wednesday, 16 September 2009
calculate_prize <- function(windows) {
       payoffs <- c("DD" = 800, "7" = 80, "BBB" = 40,
         "BB" = 25, "B" = 10, "C" = 10, "0" = 0)

         same <- length(unique(windows)) == 1
         allbars <- all(windows %in% c("B", "BB", "BBB"))

         if (same) {
           prize <- payoffs[windows[1]]
         } else if (allbars) {
           prize <- 5
         } else {
           cherries <- sum(windows == "C")
           diamonds <- sum(windows == "DD")

             prize <- c(0, 2, 5)[cherries + 1] *
               c(1, 2, 4)[diamonds + 1]
         }
         prize
     }

Wednesday, 16 September 2009
Homework

                   What did we miss? Find out the problem
                   with our scoring function and fix it.
                   Also, some readings related to group
                   work.




Wednesday, 16 September 2009

More Related Content

PDF
Yet another object system for R
PDF
13 case-study
PDF
PDF
03 extensions
PDF
05 subsetting
PDF
PDF
07 problem-solving
PDF
08 Functions
Yet another object system for R
13 case-study
03 extensions
05 subsetting
07 problem-solving
08 Functions

Similar to 07 Problem Solving (10)

PDF
08 functions
PDF
09 Simulation
PDF
PDF
14 Ddply
PDF
Latinoware Rails 2009
PDF
21 Polishing
PDF
Playing With Ruby
PDF
Semcomp de São Carlos
PDF
Strategies and Tools for Parallel Machine Learning in Python
PDF
MacRuby - When objective-c and Ruby meet
08 functions
09 Simulation
14 Ddply
Latinoware Rails 2009
21 Polishing
Playing With Ruby
Semcomp de São Carlos
Strategies and Tools for Parallel Machine Learning in Python
MacRuby - When objective-c and Ruby meet
Ad

More from Hadley Wickham (20)

PDF
27 development
PDF
27 development
PDF
24 modelling
PDF
23 data-structures
PDF
Graphical inference
PDF
R packages
PDF
PDF
PDF
20 date-times
PDF
19 tables
PDF
18 cleaning
PDF
17 polishing
PDF
16 critique
PDF
15 time-space
PDF
14 case-study
PDF
12 adv-manip
PDF
11 adv-manip
PDF
11 adv-manip
PDF
10 simulation
PDF
10 simulation
27 development
27 development
24 modelling
23 data-structures
Graphical inference
R packages
20 date-times
19 tables
18 cleaning
17 polishing
16 critique
15 time-space
14 case-study
12 adv-manip
11 adv-manip
11 adv-manip
10 simulation
10 simulation
Ad

Recently uploaded (20)

PPTX
Cell Types and Its function , kingdom of life
PDF
O7-L3 Supply Chain Operations - ICLT Program
PPTX
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PPTX
GDM (1) (1).pptx small presentation for students
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PDF
Chinmaya Tiranga quiz Grand Finale.pdf
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
PPTX
Cell Structure & Organelles in detailed.
PDF
Computing-Curriculum for Schools in Ghana
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PDF
Microbial disease of the cardiovascular and lymphatic systems
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
Cell Types and Its function , kingdom of life
O7-L3 Supply Chain Operations - ICLT Program
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
STATICS OF THE RIGID BODIES Hibbelers.pdf
GDM (1) (1).pptx small presentation for students
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Supply Chain Operations Speaking Notes -ICLT Program
human mycosis Human fungal infections are called human mycosis..pptx
Chinmaya Tiranga quiz Grand Finale.pdf
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
FourierSeries-QuestionsWithAnswers(Part-A).pdf
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
Cell Structure & Organelles in detailed.
Computing-Curriculum for Schools in Ghana
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
Microbial disease of the cardiovascular and lymphatic systems
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
102 student loan defaulters named and shamed – Is someone you know on the list?
Module 4: Burden of Disease Tutorial Slides S2 2025

07 Problem Solving

  • 1. Stat405 Problem solving Hadley Wickham Wednesday, 16 September 2009
  • 2. Homework Great improvement. A few tips: Headings should be in sentence case, and be a single sentence summary of the section. Include ggsave calls in your code. Don’t use " and " to get “ and ”. Use ` ` and ' '. (Also, I think I’ve been grading quite hard. Think of a 5 as an A+, a 4 as an A, and a 3 as an A-/B+) Wednesday, 16 September 2009
  • 3. Feedback Speed seems about right. Frustration is a natural part of the learning experience. You will get better! In particularly, it will get easier to find interesting plots (helps to start homework early!) Split homework help session? Also, feel free to email me to set up time to talk. Wednesday, 16 September 2009
  • 4. 1. Recap of problem 2. Task 3. Basic strategy 4. Turning ideas into code Wednesday, 16 September 2009
  • 5. Slots Casino claims that slot machines have prize payout of 92%. Is this claim true? mean(slots$payoff) t.test(slots$prize, mu = 0.92) qplot(prize, data = slots, binwidth = 1) Can we do better? Wednesday, 16 September 2009
  • 6. Bootstrapping Slot machine is basically a random number generator - three numbers between 1 and 7. We can generate a new number by sampling from the data. Doing that lots of times, and calculating the payoff should give us a better idea of the payoff. But first we need some way to calculate the prize from the windows Wednesday, 16 September 2009
  • 7. DD DD DD 800 windows <- c("DD", "C", "C") 7 7 7 80 # How can we calculate the BBB BBB BBB 40 # payoff? B B B 10 C C C 10 Any bar Any bar Any bar 5 C C * 5 C * C 5 C * * 2 * C * 2 DD doubles any winning combination. Two DD * * C 2 quadruples. Wednesday, 16 September 2009
  • 8. Your turn There are three basic cases of prizes. What are they? Take 3 minutes to brainstorm with a partner. Wednesday, 16 September 2009
  • 9. Cases 1. All windows have same value 2. A bar (B, BB, or BBB) in every window 3. Cherries and diamonds Wednesday, 16 September 2009
  • 10. Same values Wednesday, 16 September 2009
  • 11. Same values 1. Determine that all windows are the same. How? Wednesday, 16 September 2009
  • 12. Same values 1. Determine that all windows are the same. How? 2. Given single window, look up prize value. How? Wednesday, 16 September 2009
  • 13. Same values 1. Determine that all windows are the same. How? 2. Given single window, look up prize value. How? With a partner, brainstorm for 2 minutes on how to solve one of these problems Wednesday, 16 September 2009
  • 14. # Same value same <- length(unique(windows)) == 1 # OR same <- windows[1] == windows[2] && windows[2] == windows[3] if (same) { # Lookup value } Wednesday, 16 September 2009
  • 15. If if (cond) expression Cond should be a logical vector of length 1 Use && and || to combine sub-conditions Not & and | - these work on vectors && and || are “short-circuiting”: they do the minimum amount of work Wednesday, 16 September 2009
  • 16. if (TRUE) { # This will be run } if (FALSE) { # This won't be run } else { # This will be } # Single line form: (not recommended) if (TRUE) print("True!) if (FALSE) print("True!) Wednesday, 16 September 2009
  • 17. if (TRUE) { # This will be run } if (FALSE) { # This won't be run } else { # This will be } Note indenting. Very important! # Single line form: (not recommended) if (TRUE) print("True!) if (FALSE) print("True!) Wednesday, 16 September 2009
  • 18. x <- 5 if (x < 5) print("x < 5") if (x == 5) print("x == 5") x <- 1:5 if (x < 3) print("What should happen here?") if (x[1] < x[2]) print("x1 < x2") if (x[1] < x[2] && x[2] < x[3]) print("Asc") if (x[1] < x[2] || x[2] < x[3]) print("Asc") Wednesday, 16 September 2009
  • 19. if (window[1] == "DD") { prize <- 800 } else if (windows[1] == "7") { prize <- 80 } else if (windows[1] == "BBB") ... # Or use subsetting c("DD" = 800, "7" = 80, "BBB" = 40) c("DD" = 800, "7" = 80, "BBB" = 40)["BBB"] c("DD" = 800, "7" = 80, "BBB" = 40)["0"] c("DD" = 800, "7" = 80, "BBB" = 40)[window[1]] Wednesday, 16 September 2009
  • 20. Your turn Complete the previous code so that if all the values in win are the same, then prize variable will be set to the correct amount. Wednesday, 16 September 2009
  • 21. All bars How can we determine if all of the windows are B, BB, or BBB? (windows[1] == "B" || windows[1] == "BB" || windows[1] === "BBB") && ... ? Wednesday, 16 September 2009
  • 22. All bars How can we determine if all of the windows are B, BB, or BBB? (windows[1] == "B" || windows[1] == "BB" || windows[1] === "BBB") && ... ? Take 2 minutes to brainstorm possible solutions Wednesday, 16 September 2009
  • 23. windows[1] %in% c("B", "BB", "BBB") windows %in% c("B", "BB", "BBB") allbars <- windows %in% c("B", "BB", "BBB") allbars[1] & allbars[2] & allbars[3] all(allbars) # See also ?any for the complement Wednesday, 16 September 2009
  • 24. Your turn Complete the previous code so that the correct value of prize is set if all the windows are the same, or they are all bars Wednesday, 16 September 2009
  • 25. payoffs <- c("DD" = 800, "7" = 80, "BBB" = 40, "BB" = 25, "B" = 10, "C" = 10, "0" = 0) same <- length(unique(windows)) == 1 allbars <- all(windows %in% c("B", "BB", "BBB")) if (same) { prize <- payoffs[windows[1]] } else if (allbars) { prize <- 5 } Wednesday, 16 September 2009
  • 26. Cherries Need numbers of cherries, and numbers of diamonds (hint: use sum) Then need to look up values (like for the first case) and multiply together Wednesday, 16 September 2009
  • 27. cherries <- sum(windows == "C") diamonds <- sum(windows == "DD") c(0, 2, 5)[cherries + 1] * c(1, 2, 4)[diamonds + 1] Wednesday, 16 September 2009
  • 28. payoffs <- c("DD" = 800, "7" = 80, "BBB" = 40, "BB" = 25, "B" = 10, "C" = 10, "0" = 0) same <- length(unique(windows)) == 1 allbars <- all(windows %in% c("B", "BB", "BBB")) if (same) { prize <- payoffs[windows[1]] } else if (allbars) { prize <- 5 } else { cherries <- sum(windows == "C") diamonds <- sum(windows == "DD") prize <- c(0, 2, 5)[cherries + 1] * c(1, 2, 4)[diamonds + 1] } Wednesday, 16 September 2009
  • 29. Writing a function Now we need to wrap up this code in to a reusable fashion. We need a function Have used functions a lot, and this will be our first time writing one Wednesday, 16 September 2009
  • 30. Basic structure • Name • Input arguments • Names/positions • Defaults • Body • Output value Wednesday, 16 September 2009
  • 31. calculate_prize <- function(windows) { payoffs <- c("DD" = 800, "7" = 80, "BBB" = 40, "BB" = 25, "B" = 10, "C" = 10, "0" = 0) same <- length(unique(windows)) == 1 allbars <- all(windows %in% c("B", "BB", "BBB")) if (same) { prize <- payoffs[windows[1]] } else if (allbars) { prize <- 5 } else { cherries <- sum(windows == "C") diamonds <- sum(windows == "DD") prize <- c(0, 2, 5)[cherries + 1] * c(1, 2, 4)[diamonds + 1] } prize } Wednesday, 16 September 2009
  • 32. Homework What did we miss? Find out the problem with our scoring function and fix it. Also, some readings related to group work. Wednesday, 16 September 2009