``` r data_frame(x1 = array(1), x2 = rnorm(1)) #> Source: local data frame [1 x 2] #> #> x1 x2 #> <dbl> <dbl> #> 1 1 0.8534246 ``` I think this should be an error to be consistent with ``` r data_frame(x1 = matrix(1, 1, 1), x2 = rnorm(1)) ```