I have a tibble abc and a tibble def.
abc
# A tibble: 4 x 4
# Groups: Category, Measure [1]
Category Measure Date Value
<chr> <chr> <date> <dbl>
1 Pickles Gross Sales 2016-01-03 6518758.
2 Pickles Gross Sales 2016-01-10 5640691.
3 Pickles Gross Sales 2016-01-17 5450121.
4 Pickles Gross Sales 2016-01-24 5726041.
def
# A tibble: 4 x 2
all pb
<dbl> <dbl>
1 25992010. 4836410.
2 25769111. 4692100.
3 25612548. 4555298.
4 23869990. 4180362.
I want to cbind abc and def to get a tibble with 6 columns.
But when I do cbind(abc,def) I get the below. I am not sure why. Can someone help?
abc def
Category Character,4 Numeric,4
Measure Character,4 Numeric,4
Date Numeric,4 Numeric,4
Value Numeric,4 Numeric,4