class: center, middle, inverse, title-slide .title[ # Data Import and Export ] .author[ ###
Thiyanga S. Talagala, University of Sri Jayewardenepura ] .date[ ### IASSL - May 25-28, 2023 ] --- <style type="text/css"> .remark-slide-content { font-size: 35px; } </style> <style type="text/css"> .remark-slide-content { font-size: 35px; } </style> <style> p.comment { background-color: #DBDBDB; padding: 10px; border: 1px solid black; margin-left: 25px; border-radius: 5px; font-style: italic; } </style> <style type="text/css"> h1, #TOC>ul>li { color: #3f007d; font-weight: bold; } h2, #TOC>ul>ul>li { color: #006837; #font-family: "Times"; font-weight: bold; } h3, #TOC>ul>ul>li { color: #ce1256; #font-family: "Times"; font-weight: bold; } </style> ## Packages ```r library(tidyverse) ``` ``` ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ── ✔ ggplot2 3.4.1 ✔ purrr 1.0.1 ✔ tibble 3.2.1 ✔ dplyr 1.1.2 ✔ tidyr 1.3.0 ✔ stringr 1.5.0 ✔ readr 2.1.3 ✔ forcats 1.0.0 ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ── ✖ dplyr::filter() masks stats::filter() ✖ dplyr::lag() masks stats::lag() ``` ```r library(here) # output the current path ``` --- background-image:url('readr.png') background-size:contain --- class: inverse, middle, center # Import data --- background-image: url('csv1.png') background-size: contain --- background-image: url('csv2.png') background-size: contain --- background-image: url('csv3.png') background-size: contain --- background-image: url('csv4.png') background-size: contain --- background-image: url('csv5.png') background-size: contain --- class: inverse, middle, center # Export data --- background-image: url('csv6.png') background-size: contain --- background-image: url('csv7.png') background-size: contain --- background-image: url('csv8.png') background-size: contain --- # Recap ✅ Export data ✅ Import data --- All rights reserved by Thiyanga S. Talagala and Priyanga D. Talagala