Skip to content

Commit df3fd16

Browse files
committed
added one descriptive stat
1 parent b897e89 commit df3fd16

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

notebooks/case_study_1_languages.Rmd

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,9 @@ works_parq <- nanoparquet::read_parquet("../data/curated/enb_books.parquet")
2828
works <- setDT(works_parq)
2929
rm(works_parq)
3030
31-
# Basic overview of the data file.
32-
nrow(works)
31+
# Basic overview of the data file. How many books have a date. What is the date range.
32+
nrow(works[!is.na(publication_date_cleaned)])
3333
works[,.(min(publication_date_cleaned,na.rm=T),max(publication_date_cleaned,na.rm=T))]
34-
names(works)
3534
3635
3736
# Color palettes used in the figures.

0 commit comments

Comments
 (0)