The question has been answered, but it is useful to point out that if the column in question is a Date or a datetime, then it will still appear to be an NA in the summary table, but actually isn't. This is doubly confusing! Consider:
library(dplyr)
#>
#> Attaching package: 'dplyr'
#> The following objects are masked from 'package:stats':
#>
#> filter, lag
#> The following objects are masked from 'package:base':
#>
#> intersect, setdiff, setequal, union
df <- data.frame(date = as.Date(c("2013-01-01", "2013-05-23", "", "2017-04-15", "", "")),
int = c(1L, 2L, NA, 4L, NA, NA),
group = rep(LETTERS[1:3],2))
s1 <- df %>% group_by(group) %>% summarise(min_date = min(date), min_int = min(int)) %>% mutate(min_date_missing = is.na(min_date), min_int_missing = is.na(min_int))
#> Warning: package 'bindrcpp' was built under R version 3.4.4
s2 <- df %>% group_by(group) %>% summarise(min_date = min(date, na.rm = TRUE), min_int = min(int, na.rm = TRUE)) %>% mutate(min_date_missing = is.na(min_date), min_int_missing = is.na(min_int))
df
#> date int group
#> 1 2013-01-01 1 A
#> 2 2013-05-23 2 B
#> 3 <NA> NA C
#> 4 2017-04-15 4 A
#> 5 <NA> NA B
#> 6 <NA> NA C
s1
#> # A tibble: 3 x 5
#> group min_date min_int min_date_missing min_int_missing
#> <fct> <date> <dbl> <lgl> <lgl>
#> 1 A 2013-01-01 1. FALSE FALSE
#> 2 B NA NA TRUE TRUE
#> 3 C NA NA TRUE TRUE
s2
#> # A tibble: 3 x 5
#> group min_date min_int min_date_missing min_int_missing
#> <fct> <date> <dbl> <lgl> <lgl>
#> 1 A 2013-01-01 1. FALSE FALSE
#> 2 B 2013-05-23 2. FALSE FALSE
#> 3 C NA Inf FALSE FALSE
s1[[3,2]]
#> [1] NA
s2[[3,2]]
#> [1] NA
is.na(s1[[3,2]])
#> [1] TRUE
is.na(s2[[3,2]])
#> [1] FALSE
s1[[3,2]] == Inf
#> [1] NA
s2[[3,2]] == Inf
#> [1] TRUE
s1[[3,3]]
#> [1] NA
s2[[3,3]]
#> [1] Inf
is.na(s1[[3,3]])
#> [1] TRUE
is.na(s2[[3,3]])
#> [1] FALSE
s1[[3,2]] == Inf
#> [1] NA
s2[[3,2]] == Inf
#> [1] TRUE
sessionInfo()
#> R version 3.4.3 (2017-11-30)
#> Platform: x86_64-apple-darwin15.6.0 (64-bit)
#> Running under: macOS High Sierra 10.13.5
#>
#> Matrix products: default
#> BLAS: /Library/Frameworks/R.framework/Versions/3.4/Resources/lib/libRblas.0.dylib
#> LAPACK: /Library/Frameworks/R.framework/Versions/3.4/Resources/lib/libRlapack.dylib
#>
#> locale:
#> [1] en_AU.UTF-8/en_AU.UTF-8/en_AU.UTF-8/C/en_AU.UTF-8/en_AU.UTF-8
#>
#> attached base packages:
#> [1] stats graphics grDevices utils datasets methods base
#>
#> other attached packages:
#> [1] bindrcpp_0.2.2 dplyr_0.7.4
#>
#> loaded via a namespace (and not attached):
#> [1] Rcpp_0.12.17 utf8_1.1.3 crayon_1.3.4 digest_0.6.15
#> [5] rprojroot_1.3-2 assertthat_0.2.0 R6_2.2.2 backports_1.1.2
#> [9] magrittr_1.5 evaluate_0.10.1 pillar_1.2.1 cli_1.0.0
#> [13] rlang_0.2.0.9001 stringi_1.1.7 rmarkdown_1.9 tools_3.4.3
#> [17] stringr_1.3.0 glue_1.2.0 yaml_2.1.18 compiler_3.4.3
#> [21] pkgconfig_2.0.1 htmltools_0.3.6 bindr_0.1.1 knitr_1.20
#> [25] tibble_1.4.2
Created on 2018-06-27 by the reprex package (v0.2.0.9000).