Indian Card Payment Data Set
Bankwise monthly ATMs and PoS terminals transaction statistics
@kaggle.karvalo_indian_card_payment_data_set
Bankwise monthly ATMs and PoS terminals transaction statistics
@kaggle.karvalo_indian_card_payment_data_set
The card payments data is published by the Reserve Bank of India on a monthly basis. The statistics cover the methods of payment used in retail transactions and ATM transactions in India. It constitutes payments via debit cards, credit cards, ATMs etc, . It can can be used to check trend of card based payment in India.
The data contains monthly statistics of the following information from Apr'2011 to Aug'2019
The data is scraped from RBI monthly statistics
https://www.rbi.org.in/scripts/ATMView.aspx
More details on how this data is collected and cleaned is documented in this kernel
https://www.kaggle.com/karvalo/indian-card-payment-data-gathering-and-analysis
CREATE TABLE rbi_payment_data_as_on_aug_2019 (
"month" VARCHAR,
"year" BIGINT,
"month_number" BIGINT,
"start_date" TIMESTAMP,
"end_date" TIMESTAMP,
"bank_name" VARCHAR,
"no_atms_on_site" BIGINT,
"no_atms_off_site" BIGINT,
"no_pos_on_line" BIGINT,
"no_pos_off_line" DOUBLE,
"no_credit_cards" DOUBLE,
"no_credit_card_atm_txn" BIGINT,
"no_credit_card_pos_txn" BIGINT,
"no_credit_card_atm_txn_value_in_mn" DOUBLE,
"no_credit_card_pos_txn_value_in_mn" DOUBLE,
"no_debit_cards" DOUBLE,
"no_debit_card_atm_txn" DOUBLE,
"no_debit_card_pos_txn" DOUBLE,
"no_debit_card_atm_txn_value_in_mn" DOUBLE,
"no_debit_card_pos_txn_value_in_mn" DOUBLE
);Anyone who has the link will be able to view this.