readxl (1)

Introduzione all'importazione dei dati in R

Filip Schouwenaars

Instructor, DataCamp

Microsoft Excel

  • Strumento comune per l’analisi dati
  • Molti pacchetti R per interagire con Excel
  • readxl - Hadley Wickham
Introduzione all'importazione dei dati in R

Struttura tipica dei dati Excel

  • Fogli diversi con dati tabellari

Schermata 2019-07-15 alle 15.27.34.png

Introduzione all'importazione dei dati in R

readxl

  • excel_sheets()
    • elenca i fogli
  • read_excel()
    • importa i dati in R
install.packages("readxl")
library(readxl)
Introduzione all'importazione dei dati in R

excel_sheets()

dir()
"cities.xlsx"  "the_rest_is_secret.txt"
excel_sheets("cities.xlsx")
"year_1990" "year_2000"
Introduzione all'importazione dei dati in R

read_excel()

read_excel("cities.xlsx")
# A tibble: 4 × 2
    Capital Population
      <chr>      <dbl>
1  New York   16044000
2    Berlin    3433695
3    Madrid    3010492
4 Stockholm    1683713
read_excel("cities.xlsx", sheet = 2)
read_excel("cities.xlsx", sheet = "year_2000")
# A tibble: 4 × 2
    Capital Population
      <chr>      <dbl>
1  New York   17800000
2    Berlin    3382169
3    Madrid    2938723
4 Stockholm    1942362
Introduzione all'importazione dei dati in R

Passons à la pratique !

Introduzione all'importazione dei dati in R

Preparing Video For Download...