Skip to content

Commit 99d2742

Browse files
committed
v 0.2.0 and updated README
1 parent f9adddb commit 99d2742

File tree

3 files changed

+16
-14
lines changed

3 files changed

+16
-14
lines changed

CRAN-RELEASE

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
This package was submitted to CRAN on 2019-09-15.
2-
Once it is accepted, delete this file and tag the release (commit 0ebf4c173b).
1+
This package was submitted to CRAN on 2019-10-06.
2+
Once it is accepted, delete this file and tag the release (commit f9adddbee4).

README.Rmd

+2-1
Original file line numberDiff line numberDiff line change
@@ -319,9 +319,10 @@ The work priorities at this stage are
319319
| -- | -- | -- | -- |
320320
| [`{disk.frame}` is epic](https://www.brodrigues.co/blog/2019-09-03-disk_frame/) | Bruno Rodriguez | 20190903 | It's about loading a 30G file into `{disk.frame}` |
321321
| [My top 10 R packages for data analytics](https://www.actuaries.digital/2019/09/26/my-top-10-r-packages-for-data-analytics/) | Jacky Poon | 20190903 | `{disk.frame}` was number 3 |
322-
| [Emma goes to useR! 2019](https://emmavestesson.netlify.com/2019/07/user2019/) | Emma Vestesson | 20190716 | The first mention of `{disk.frame}` in a blog post |
323322
| [useR! 2019 presentation video](https://www.youtube.com/watch?v=3XMTyi_H4q4) | Dai ZJ | 20190803 | |
324323
| [useR! 2019 presentation slides](https://www.beautiful.ai/player/-LphQ0YaJwRektb8nZoY) | Dai ZJ | 20190803 | |
324+
| [Split-apply-combine for Maximum Likelihood Estimation of a linear model](https://www.brodrigues.co/blog/2019-10-05-parallel_maxlik/) | 20191006 | `{disk.frame}` used in helping to create a maximum likelihood estimation program for linear models |
325+
| [Emma goes to useR! 2019](https://emmavestesson.netlify.com/2019/07/user2019/) | Emma Vestesson | 20190716 | The first mention of `{disk.frame}` in a blog post |
325326

326327

327328
## Open Collective

README.md

+12-11
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ To find out where the disk.frame is stored on disk:
251251
``` r
252252
# where is the disk.frame stored
253253
attr(flights.df, "path")
254-
#> [1] "C:\\Users\\RTX2080\\AppData\\Local\\Temp\\RtmpstAhab\\file2ffc6304721e.df"
254+
#> [1] "C:\\Users\\RTX2080\\AppData\\Local\\Temp\\RtmpMR7WaV\\file179c3d8e79ee.df"
255255
```
256256

257257
A number of data.frame functions are implemented for disk.frame
@@ -378,7 +378,7 @@ df_filtered <-
378378
flights.df %>%
379379
filter(month == 1)
380380
cat("filtering a < 0.1 took: ", data.table::timetaken(pt), "\n")
381-
#> filtering a < 0.1 took: 0.000s elapsed (0.000s cpu)
381+
#> filtering a < 0.1 took: 0.020s elapsed (0.020s cpu)
382382
nrow(df_filtered)
383383
#> [1] 336776
384384
```
@@ -398,7 +398,7 @@ res1 <- flights.df %>%
398398
summarise(sum_delay = sum(sum_delay), n = sum(n)) %>%
399399
mutate(avg_delay = sum_delay/n)
400400
cat("group by took: ", data.table::timetaken(pt), "\n")
401-
#> group by took: 0.940s elapsed (0.180s cpu)
401+
#> group by took: 0.610s elapsed (0.140s cpu)
402402

403403
collect(res1)
404404
#> # A tibble: 2 x 4
@@ -423,7 +423,7 @@ res1 <- flights.df %>%
423423
collect
424424
#> Appending disk.frames:
425425
cat("group by took: ", data.table::timetaken(pt), "\n")
426-
#> group by took: 1.480s elapsed (0.280s cpu)
426+
#> group by took: 1.520s elapsed (0.390s cpu)
427427

428428
collect(res1)
429429
#> # A tibble: 2 x 2
@@ -499,13 +499,14 @@ The work priorities at this stage are
499499

500500
## Blogs and other resources
501501

502-
| Title | Author | Date | Description |
503-
| ---------------------------------------------------------------------------------------------------------------------------- | --------------- | -------- | -------------------------------------------------- |
504-
| [`{disk.frame}` is epic](https://www.brodrigues.co/blog/2019-09-03-disk_frame/) | Bruno Rodriguez | 20190903 | It’s about loading a 30G file into `{disk.frame}` |
505-
| [My top 10 R packages for data analytics](https://www.actuaries.digital/2019/09/26/my-top-10-r-packages-for-data-analytics/) | Jacky Poon | 20190903 | `{disk.frame}` was number 3 |
506-
| [Emma goes to useR\! 2019](https://emmavestesson.netlify.com/2019/07/user2019/) | Emma Vestesson | 20190716 | The first mention of `{disk.frame}` in a blog post |
507-
| [useR\! 2019 presentation video](https://www.youtube.com/watch?v=3XMTyi_H4q4) | Dai ZJ | 20190803 | |
508-
| [useR\! 2019 presentation slides](https://www.beautiful.ai/player/-LphQ0YaJwRektb8nZoY) | Dai ZJ | 20190803 | |
502+
| Title | Author | Date | Description |
503+
| ------------------------------------------------------------------------------------------------------------------------------------- | --------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------- |
504+
| [`{disk.frame}` is epic](https://www.brodrigues.co/blog/2019-09-03-disk_frame/) | Bruno Rodriguez | 20190903 | It’s about loading a 30G file into `{disk.frame}` |
505+
| [My top 10 R packages for data analytics](https://www.actuaries.digital/2019/09/26/my-top-10-r-packages-for-data-analytics/) | Jacky Poon | 20190903 | `{disk.frame}` was number 3 |
506+
| [useR\! 2019 presentation video](https://www.youtube.com/watch?v=3XMTyi_H4q4) | Dai ZJ | 20190803 | |
507+
| [useR\! 2019 presentation slides](https://www.beautiful.ai/player/-LphQ0YaJwRektb8nZoY) | Dai ZJ | 20190803 | |
508+
| [Split-apply-combine for Maximum Likelihood Estimation of a linear model](https://www.brodrigues.co/blog/2019-10-05-parallel_maxlik/) | 20191006 | `{disk.frame}` used in helping to create a maximum likelihood estimation program for linear models | |
509+
| [Emma goes to useR\! 2019](https://emmavestesson.netlify.com/2019/07/user2019/) | Emma Vestesson | 20190716 | The first mention of `{disk.frame}` in a blog post |
509510

510511
## Open Collective
511512

0 commit comments

Comments
 (0)