class: center, middle, inverse, title-slide .title[ # Names and Values ] .subtitle[ ## Mini-Lecture 1 ] .author[ ### Albert Y. Kim ] .date[ ###
SDS 270
2022-09-13
] --- class: center, inverse, middle # The course --- ## Things you already know .pull-left[ - data wrangling (i.e., `dplyr`) - data visualization (i.e., `ggplot2`) - universal programming concepts - data types - how to write a function - object-oriented programming - basic version control (i.e., GitHub) ] --- ## Things you will learn - how R **really** works -- - how to actually write **robust, user-friendly** functions -- - how to actually **collaborate** on GitHub (using pull requests and code review) -- - how to make your code: - readable - efficient - robust -- - how to write an R package --- ## Textbook (required) .pull-left[  ] .pull-right[ - **SECOND EDITION!!** - https://adv-r.hadley.nz/ ] --- ## Textbook (required) .pull-left[ - 2nd edition (preview edition): - http://r-pkgs.had.co.nz/ ] .pull-right[  ] --- ## Assignments .pull-left[ - Weekly open-book moodle quizzes: Open on Tuesday at 9:25am, close on Fridays at 5pm (15%) - **Labs (0%)**: Not due - Code review (15%) - Mini-projects (55%) - Engagement (15%) ] --- ## Resources - Student hours: - Office hours calendar accessible in syllabus: location indicated in calendar entry - For private or sensitive matters only: appointment calendar - Spinelli tutoring center evening [drop-in hours](https://www.smith.edu/qlc/tutoring.html?colStats=open#PanelStats) - **Only AJ and Swaha** have taken 270, so only go on their days (As of 9/13, Mon and Tue) --- class: center, inverse, middle # Let's get started! --- ## `lobstr` .pull-left[  ] .pull-right[ - https://github.com/r-lib/lobstr - tools for looking under the hood ] --- ## Memory usage ```r library(lobstr) mem_used() ``` ``` ## 56.05 MB ``` - How is memory usage affected by: - loading packages - loading data sets - manipulating data --- ## Memory of objects ```r obj_size(5) ``` ``` ## 56 B ``` ```r obj_size(rnorm(100)) ``` ``` ## 848 B ``` ```r obj_size(dplyr::starwars) ``` ``` ## 42.37 kB ``` ```r obj_size(dplyr::select) ``` ``` ## 1.31 kB ``` - How much memory do individual objects occupy? --- ## Memory locations ```r ref(mtcars) ``` ``` ## █ [1:0x7fc895b4b958] <df[,11]> ## ├─mpg = [2:0x7fc88fd805c0] <dbl> ## ├─cyl = [3:0x7fc88fd7dfa0] <dbl> ## ├─disp = [4:0x7fc88fd838b0] <dbl> ## ├─hp = [5:0x7fc88fd839e0] <dbl> ## ├─drat = [6:0x7fc88fd83b10] <dbl> ## ├─wt = [7:0x7fc88fd83c40] <dbl> ## ├─qsec = [8:0x7fc88fd1f6f0] <dbl> ## ├─vs = [9:0x7fc88fd1f820] <dbl> ## ├─am = [10:0x7fc88fd1f950] <dbl> ## ├─gear = [11:0x7fc88fd1fa80] <dbl> ## └─carb = [12:0x7fc88fd1fbb0] <dbl> ``` - *where* are objects stored in memory? --- ## Addresses .center[] --- ## Aside - A [32-bit computer](https://en.wikipedia.org/wiki/32-bit) can only address `\(2^{32} = 4,294,967,296\)` bytes of memory (4 GiB) - A [64-bit computer](https://en.wikipedia.org/wiki/64-bit_computing) can address `\(2^{64}\)` bytes of memory (16 [exabytes](https://en.wikipedia.org/wiki/Exabyte)) -- - A quick timeline - 1960: [PDP-1](https://en.wikipedia.org/wiki/PDP-1) has 18-bit word size ~ 9 kB of memory -- - 1978: [Intel 8086](https://en.wikipedia.org/wiki/Intel_8086) has 16-bits -- - 1985: [Intel 80386](https://en.wikipedia.org/wiki/Intel_80386) has 32-bits -- - 2003: [x86-64](https://en.wikipedia.org/wiki/X86-64) has 64-bits -- - 2013: [ARMv8-A](https://en.wikipedia.org/wiki/ARMv8) has 64-bits (for your phone) -- - [History of video games](https://en.wikipedia.org/wiki/History_of_video_games)