Skip to content

Instantly share code, notes, and snippets.

@batpigandme
Created October 29, 2018 13:39
Show Gist options
  • Save batpigandme/0f76eadd21f50769e2d7907258b6113d to your computer and use it in GitHub Desktop.
Save batpigandme/0f76eadd21f50769e2d7907258b6113d to your computer and use it in GitHub Desktop.
sample_gls <- tibble::tribble(
                      ~name, ~team, ~mins, ~pts, ~rbs, ~ast, ~stl, ~blk,
  "Rondae Hollis-Jefferson", "BKN",    17,    7,    2,    0,    1,    0,
               "Joe Harris", "BKN",    30,    7,    3,    3,    0,    0,
             "Allen Crabbe", "BKN",    28,   14,    5,    2,    0,    0,
      "Dorian Finney-Smith", "DAL",    11,    3,    0,    0,    0,    0,
          "Wesley Matthews", "DAL",    36,   22,    7,    1,    1,    0,
              "Maxi Kleber", "DAL",    13,   11,    3,    0,    0,    0,
              "Jordan Bell", "GSW",    10,    2,    3,    1,    0,    1,
              "Jacob Evans", "GSW",     6,    0,    0,    0,    0,    0,
            "Stephen Curry", "GSW",    36,   35,    7,    3,    1,    0,
         "Danilo Gallinari", "LAC",    26,   11,    7,    2,    2,    1,
          "Jerome Robinson", "LAC",     7,    4,    0,    0,    0,    0,
             "Lou Williams", "LAC",    16,   17,    0,    6,    1,    0,
            "Deonte Burton", "OKC",     5,    0,    0,    0,    0,    0,
  "Timothe Luwawu-Cabarrot", "OKC",     1,    0,    0,    0,    0,    0,
        "Patrick Patterson", "OKC",    30,   17,    4,    0,    0,    0,
             "Trevor Ariza", "PHX",    28,    5,    5,    3,    2,    0,
              "T.J. Warren", "PHX",    22,   18,    8,    0,    0,    1,
            "Ryan Anderson", "PHX",    31,   15,    5,    0,    1,    0,
            "Grayson Allen", "UTA",    13,   11,    1,    0,    0,    0,
               "Dante Exum", "UTA",    16,    6,    4,    3,    1,    1,
            "Royce O'Neale", "UTA",    17,    5,    4,    0,    1,    0,
              "Ian Mahinmi", "WAS",    29,   11,    7,    0,    0,    0,
             "Jordan McRae", "WAS",     8,    0,    1,    1,    0,    1,
         "Tomas Satoransky", "WAS",    16,    9,    1,    3,    0,    0
  )
head(sample_gls)
#> # A tibble: 6 x 8
#>   name                    team   mins   pts   rbs   ast   stl   blk
#>   <chr>                   <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 Rondae Hollis-Jefferson BKN      17     7     2     0     1     0
#> 2 Joe Harris              BKN      30     7     3     3     0     0
#> 3 Allen Crabbe            BKN      28    14     5     2     0     0
#> 4 Dorian Finney-Smith     DAL      11     3     0     0     0     0
#> 5 Wesley Matthews         DAL      36    22     7     1     1     0
#> 6 Maxi Kleber             DAL      13    11     3     0     0     0

Created on 2018-10-29 by the reprex package (v0.2.1.9000)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment