Lembaga : UIN Maulana Malik Ibrahim Malang, Teknik Informatika.
Cash outflow merupakan aliran kas yang terdiri dari berbagai macam transaksi yang dapat mengakibatkan beban pengeluaran kas. Cash outflow dapat terdiri dari:
library(readxl)
## Warning: package 'readxl' was built under R version 4.1.2
dataoutflow <- read_excel(path = "outflowup.xlsx")
dataoutflow
## # A tibble: 11 x 11
## Tahun Aceh `Sumatera Utara` `Sumatera Barat` Riau `Kep. Riau` Jambi
## <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 2011 6338. 22176. 5300. 12434. 5819. 5217.
## 2 2012 6378. 22495. 6434. 13014. 6966. 5013.
## 3 2013 23278. 19235. 6511. 15460. 8747. 6302.
## 4 2014 8630. 26391. 7060. 15158. 10122. 8361.
## 5 2015 9637. 27877. 7471. 15789. 9803. 8325.
## 6 2016 11311. 31959. 9198. 17645. 10068. 7774.
## 7 2017 11760. 35243. 10754. 18128. 10749. 8434.
## 8 2018 11450. 36908. 8447. 17926. 12597. 8459.
## 9 2019 13087. 44051. 9465. 19277. 12644. 9204.
## 10 2020 12874. 39758. 8763. 19139. 8461. 8950.
## 11 2021 5770. 23453. 5941. 12631. 5128. 6046.
## # ... with 4 more variables: Sumatera Selatan <dbl>, Bengkulu <dbl>,
## # Lampung <dbl>, Kep. Bangka Belitung <dbl>
plot(dataoutflow$Tahun,dataoutflow$Aceh ,type = "l", col = "blue")
plot(dataoutflow$Tahun,dataoutflow$`Sumatera Utara` ,type = "l", col = "red")
plot(dataoutflow$Tahun,dataoutflow$`Sumatera Barat` ,type = "l", col = "black")
plot(dataoutflow$Tahun,dataoutflow$Riau ,type = "l", col = "purple")
plot(dataoutflow$Tahun,dataoutflow$`Kep. Riau` ,type = "l", col = "pink")
plot(dataoutflow$Tahun,dataoutflow$Jambi ,type = "l", col = "brown")
plot(dataoutflow$Tahun,dataoutflow$`Sumatera Selatan` ,type = "l", col = "steel blue")
plot(dataoutflow$Tahun,dataoutflow$Bengkulu ,type = "l", col = "green")
plot(dataoutflow$Tahun,dataoutflow$Lampung ,type = "l", col = "yellow")
plot(dataoutflow$Tahun,dataoutflow$`Kep. Bangka Belitung` ,type = "l", col = "orange")