Rows: 8 Columns: 7
โโ Column specification โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Delimiter: ","
chr (5): transaction_id, user_id, currency, status, region
dbl (1): amount
date (1): date
โน Use `spec()` to retrieve the full column specification for this data.
โน Specify the column types or set `show_col_types = FALSE` to quiet this message.
๐งผ Stage 1: Cleaning
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
cleaned <- transactions %>%filter(!is.na(amount), status =="Complete")