├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── Loan Prediction.ipynb ├── Loan Prediction.pdf ├── Logistic_Prediction.csv ├── README.md ├── conclusion.csv ├── test.csv └── train.csv /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | github: ParthS007 3 | 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParthS007/Loan-Approval-Prediction/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParthS007/Loan-Approval-Prediction/HEAD/LICENSE -------------------------------------------------------------------------------- /Loan Prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParthS007/Loan-Approval-Prediction/HEAD/Loan Prediction.ipynb -------------------------------------------------------------------------------- /Loan Prediction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParthS007/Loan-Approval-Prediction/HEAD/Loan Prediction.pdf -------------------------------------------------------------------------------- /Logistic_Prediction.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParthS007/Loan-Approval-Prediction/HEAD/Logistic_Prediction.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParthS007/Loan-Approval-Prediction/HEAD/README.md -------------------------------------------------------------------------------- /conclusion.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParthS007/Loan-Approval-Prediction/HEAD/conclusion.csv -------------------------------------------------------------------------------- /test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParthS007/Loan-Approval-Prediction/HEAD/test.csv -------------------------------------------------------------------------------- /train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParthS007/Loan-Approval-Prediction/HEAD/train.csv --------------------------------------------------------------------------------