class: center, middle, inverse, title-slide .title[ # Subsetting ] .subtitle[ ## Mini-Lecture 4 ] .author[ ### Albert Y. Kim ] .date[ ###
SDS 270
2022-09-20
] --- class: center, inverse, middle # Slack review --- ## More practice > I think I just need **more practice** with GitHub. -- > Now that I'm taking the time to **really learn how it works** (instead of just viewing it as an obstacle to be overcome in group projects), I'm starting to understand why certain errors happen. -- - You're ready -- - It's time --- ## GitHub credentials ```r usethis::gh_token_help() ``` ``` ## • GitHub host: 'https://github.com' ## • Personal access token for 'https://github.com': '<discovered>' ## • GitHub user: 'rudeboybert' ## • Token scopes: 'gist, repo, user, workflow' ## • Email(s): 'albert.ys.kim@gmail.com (primary)', 'aykim@middlebury.edu', 'aykim@amherst.edu', 'akim04@smith.edu' ``` ```r usethis::git_sitrep() ``` --- ## Pull requests > I'm also a little confused about the reasoning behind pull requests. I know they're useful when you don't have access to change a repository, but can they be used **when you do have editing power**? -- - Yes. Pull requests are from branch-to-branch -- not always repo-to-repo -- - Code review: gives someone else a chance to review your contribution -- - This is way that things are done IRL --- ## Helper functions > My push/pull buttons are still **greyed out** despite my attempt at troubleshooting using the text. Any help? -- - It's because you're on a branch -- - Everything that happens in RStudio or through `usethis` are wrappers around `git` commands -- - The "push" button = `git push [origin main]` -- - But you're not on the `main` branch. So try `git push origin <branchname>` -- - same as `usethis::pr_push(branchname = "<brachname>")` --- ## Being ahead > how worried I should be about the “you are _ commits **ahead of master**” messages that I always seem to have even after I pull. -- - You probably want to push --- ## Command line > I also want to practice more git execution using the terminal -- - More on that later --- ## Learning Lab > I also completed the "Introduction to Github" from Github's Learning Lab, which was extremely helpful- I highly recommend! https://lab.github.com/githubtraining/introduction-to-github -- - Thanks! --- class: center, inverse, middle # Subsetting --- ## Operators .pull-left[ Use: -
`dplyr::filter()` -
`dplyr::select()` -
`dplyr::pull()` -
`purrr::pluck()` ] -- .pull-right[ Avoid: -
`subset()` -
`rvest::pluck()` -
`magrittr::extract()` -
`magrittr::extract2()` ] Today: Old-school, base R operators: `[`, `[[`, `$` --- ## Train metaphor  --  --- ## Pepper shaker .pull-left[ `x`:  ] -- .pull-right[ - `x[1]`: .img-half[] - `x[[1]]`: .img-third[] - `x[[1]][[1]]`: .img-quarter[] ]