├── .gitignore ├── Dataset └── Dis2.csv ├── Figures ├── Figure 1.jpg ├── Figure 2.jpg ├── Figure 3.jpg ├── Figure 4.jpg ├── Figure 5.jpg ├── Figure 6.jpg ├── Figure 7.jpg ├── Graphical Abstract.jpg ├── Sub Figure 1.jpg ├── Sub Figure 2.jpg ├── Sub Figure 3.jpg ├── Sub Figure 4.jpg └── Sub Figure 5.jpg ├── LICENSE ├── Notebooks ├── LandSlide EDA.ipynb └── LandSlide ML Models Analysis.ipynb ├── README.md └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | pip-wheel-metadata/ 24 | share/python-wheels/ 25 | *.egg-info/ 26 | .installed.cfg 27 | *.egg 28 | MANIFEST 29 | 30 | # PyInstaller 31 | # Usually these files are written by a python script from a template 32 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 33 | *.manifest 34 | *.spec 35 | 36 | # Installer logs 37 | pip-log.txt 38 | pip-delete-this-directory.txt 39 | 40 | # Unit test / coverage reports 41 | htmlcov/ 42 | .tox/ 43 | .nox/ 44 | .coverage 45 | .coverage.* 46 | .cache 47 | nosetests.xml 48 | coverage.xml 49 | *.cover 50 | *.py,cover 51 | .hypothesis/ 52 | .pytest_cache/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | target/ 76 | 77 | # Jupyter Notebook 78 | .ipynb_checkpoints 79 | 80 | # IPython 81 | profile_default/ 82 | ipython_config.py 83 | 84 | # pyenv 85 | .python-version 86 | 87 | # pipenv 88 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 89 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 90 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 91 | # install all needed dependencies. 92 | #Pipfile.lock 93 | 94 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow 95 | __pypackages__/ 96 | 97 | # Celery stuff 98 | celerybeat-schedule 99 | celerybeat.pid 100 | 101 | # SageMath parsed files 102 | *.sage.py 103 | 104 | # Environments 105 | .env 106 | .venv 107 | env/ 108 | venv/ 109 | ENV/ 110 | env.bak/ 111 | venv.bak/ 112 | 113 | # Spyder project settings 114 | .spyderproject 115 | .spyproject 116 | 117 | # Rope project settings 118 | .ropeproject 119 | 120 | # mkdocs documentation 121 | /site 122 | 123 | # mypy 124 | .mypy_cache/ 125 | .dmypy.json 126 | dmypy.json 127 | 128 | # Pyre type checker 129 | .pyre/ 130 | -------------------------------------------------------------------------------- /Dataset/Dis2.csv: -------------------------------------------------------------------------------- 1 | Y,PROFILE,PLAN,CHANGE,LANDUSE,ELEVATION,SLOPE,ASPECT,TWI,SPI,DRAINAGE,NDVI,RAINFALL,FAULTLINES,ROAD,GEOLOGY 2 | 1,38,43,2,10,11,22,7,45,24,36,16,29,32,88,18 3 | 1,57,52,2,10,26,31,11,30,23,12,22,29,28,88,10 4 | 1,57,52,2,10,26,31,11,45,30,17,36,29,28,88,10 5 | 1,38,43,2,10,26,6,7,16,23,17,22,29,28,88,10 6 | 1,38,43,2,10,26,31,15,45,30,17,36,29,28,88,10 7 | 1,57,52,2,10,26,31,14,30,23,17,22,29,28,88,18 8 | 1,38,43,14,61,26,6,15,30,30,17,22,29,28,88,10 9 | 1,57,43,2,10,26,22,7,16,17,12,22,29,28,88,10 10 | 1,57,52,14,61,26,28,17,45,6,12,22,29,28,88,10 11 | 1,57,43,2,10,26,31,17,45,23,12,22,29,28,88,10 12 | 1,38,52,2,10,11,22,14,45,30,12,22,29,32,88,18 13 | 1,38,52,2,10,26,31,14,45,23,12,36,29,32,88,18 14 | 1,57,52,2,10,50,31,14,45,24,12,24,29,32,88,18 15 | 1,57,52,2,10,50,31,13,45,30,12,22,29,32,88,18 16 | 1,57,52,2,10,13,31,13,45,30,12,22,21,30,9,18 17 | 1,57,52,2,10,26,31,13,45,30,27,16,21,28,88,10 18 | 1,57,52,2,10,26,22,17,45,30,27,16,21,32,88,10 19 | 1,38,52,2,10,26,22,13,45,30,27,16,21,32,88,10 20 | 1,57,52,2,10,26,31,14,45,24,27,16,21,32,88,10 21 | 1,57,52,2,10,50,13,15,30,30,27,16,21,32,88,10 22 | 1,57,43,2,10,26,31,15,45,30,27,16,21,32,88,10 23 | 1,57,52,2,10,50,6,7,30,24,27,16,21,32,88,10 24 | 1,57,52,14,61,26,31,13,45,30,8,16,21,32,88,10 25 | 1,38,52,2,10,26,22,14,45,24,8,16,21,32,88,10 26 | 1,57,52,14,61,26,31,11,45,24,8,16,21,30,88,10 27 | 1,57,43,2,10,26,13,17,45,24,8,22,21,30,88,18 28 | 1,5,43,9,29,26,31,13,45,24,8,22,21,30,88,18 29 | 1,57,52,2,10,26,31,13,45,30,12,22,21,30,88,18 30 | 1,38,52,2,10,50,28,13,45,6,12,16,21,30,88,18 31 | 1,38,52,2,10,50,31,17,45,24,12,16,21,30,88,18 32 | 1,57,43,2,10,50,31,14,45,6,12,22,21,30,88,10 33 | 1,38,43,2,10,50,31,15,16,17,12,36,21,30,88,10 34 | 1,38,52,2,10,50,31,13,45,24,12,16,21,30,88,18 35 | 1,38,52,14,61,13,31,15,45,24,12,22,21,30,9,18 36 | 1,38,43,2,10,13,28,13,30,17,12,16,21,30,9,18 37 | 1,57,52,2,10,13,28,15,45,23,12,16,21,30,9,18 38 | 1,38,43,14,61,50,31,15,30,23,12,16,21,30,9,18 39 | 1,38,43,2,10,13,28,15,45,17,12,36,21,30,9,18 40 | 1,57,43,2,10,13,28,13,45,23,12,22,21,30,9,18 41 | 1,38,52,2,10,13,31,7,30,17,12,16,21,30,9,18 42 | 1,57,52,2,10,26,31,14,45,24,36,22,35,32,88,0 43 | 1,57,52,14,61,50,13,7,45,24,36,36,35,32,88,22 44 | 1,38,52,2,10,26,22,15,45,30,36,16,35,28,88,22 45 | 1,57,43,2,10,26,13,15,16,23,36,16,35,28,88,22 46 | 1,57,52,2,10,50,13,15,30,30,36,36,35,28,88,40 47 | 1,38,43,9,29,26,13,17,30,30,17,36,35,28,88,40 48 | 1,57,52,2,10,26,22,13,45,24,17,22,35,28,9,0 49 | 1,38,43,5,61,26,22,15,30,23,17,36,35,28,9,0 50 | 1,38,52,2,10,26,22,17,45,30,17,16,35,28,9,40 51 | 1,57,43,14,61,26,13,17,45,24,17,22,35,10,9,40 52 | 1,38,52,2,10,50,6,11,16,30,8,22,10,28,9,3 53 | 1,38,43,2,10,26,6,14,30,30,8,36,10,28,88,3 54 | 1,38,5,2,10,26,6,11,9,23,8,16,10,28,88,3 55 | 1,38,52,2,10,26,6,15,16,30,27,22,10,28,88,3 56 | 1,38,52,2,10,26,22,17,30,23,27,16,10,28,88,3 57 | 1,38,52,2,10,26,31,14,45,30,27,16,10,28,88,3 58 | 1,57,43,2,10,26,13,15,30,30,27,22,10,32,88,22 59 | 1,38,43,2,10,26,22,13,16,17,27,16,10,32,88,22 60 | 1,57,43,2,10,50,22,13,45,24,27,16,10,32,88,22 61 | 1,57,52,2,10,50,22,14,45,24,27,16,10,32,88,22 62 | 1,57,52,2,10,50,22,11,45,24,27,16,10,32,88,22 63 | 1,38,43,2,10,26,13,7,16,23,27,36,10,32,88,3 64 | 1,57,52,2,10,50,13,7,30,24,27,16,10,30,3,10 65 | 1,38,43,2,10,26,13,15,9,17,27,22,10,30,3,10 66 | 1,38,52,2,10,50,22,14,45,30,27,22,29,30,3,10 67 | 1,38,52,2,10,50,28,15,45,6,8,36,29,30,9,10 68 | 1,38,43,2,10,26,13,17,9,17,12,22,21,32,9,10 69 | 1,57,52,9,10,26,31,17,45,24,8,36,21,30,88,10 70 | 1,57,52,9,29,26,31,17,45,30,8,36,21,30,88,10 71 | 1,57,52,5,10,26,31,17,45,30,8,22,21,30,88,10 72 | 1,57,52,9,29,26,22,10,45,24,8,36,29,32,88,10 73 | 1,57,52,9,29,26,22,10,45,24,8,36,29,32,88,10 74 | 1,57,52,9,10,26,13,13,45,24,8,22,29,32,88,10 75 | 1,38,43,9,29,26,31,17,45,23,8,22,21,30,88,18 76 | 1,38,52,9,10,26,31,17,45,6,8,36,21,30,88,10 77 | 1,38,43,2,10,26,31,17,30,23,8,36,21,30,88,18 78 | 1,38,43,9,29,26,31,17,45,23,8,22,21,30,88,18 79 | 1,38,52,21,61,50,22,14,30,30,17,24,35,30,88,10 80 | 1,38,52,9,10,50,22,13,45,24,17,24,35,30,88,10 81 | 1,57,43,2,10,50,13,17,45,30,17,22,35,30,88,10 82 | 1,38,43,2,10,50,6,11,9,17,17,24,35,30,88,10 83 | 1,38,43,4,29,26,28,15,45,23,12,36,21,30,88,18 84 | 1,38,52,1,10,50,13,7,30,30,17,24,35,30,88,10 85 | 1,38,43,9,10,50,6,7,30,30,17,36,35,30,88,10 86 | 1,57,43,14,61,50,6,10,16,30,17,22,35,30,88,10 87 | 1,38,43,21,61,50,6,17,30,30,17,36,35,30,88,10 88 | 1,5,5,9,10,50,6,2,9,24,12,22,35,30,88,10 89 | 1,38,43,2,10,50,6,13,30,30,17,36,35,30,88,10 90 | 1,57,43,9,10,50,13,11,30,24,17,36,35,30,88,10 91 | 1,57,52,1,10,50,22,11,45,24,17,22,35,30,88,10 92 | 1,57,52,1,10,50,31,11,45,30,17,22,35,30,88,10 93 | 1,57,52,2,10,50,22,10,45,30,17,36,35,30,88,10 94 | 1,57,52,2,10,50,31,10,45,23,17,24,35,30,88,10 95 | 1,57,43,2,10,50,28,11,45,23,17,36,35,30,88,10 96 | 1,57,52,23,61,50,22,15,45,30,17,36,35,32,88,10 97 | 1,38,43,2,10,50,28,11,45,23,36,22,35,32,88,10 98 | 1,38,52,2,10,50,22,15,45,24,36,22,35,32,88,10 99 | 1,38,43,2,10,50,13,11,45,24,36,36,35,32,88,10 100 | 1,57,52,2,10,50,31,11,45,24,36,16,35,32,88,10 101 | 1,57,52,2,10,50,6,14,30,24,36,22,35,32,88,10 102 | 1,57,52,2,10,50,31,11,30,23,36,36,35,32,88,10 103 | 1,38,43,14,61,50,28,11,45,23,36,22,35,32,88,10 104 | 1,38,43,14,61,26,28,11,30,17,36,24,35,32,88,10 105 | 1,57,52,21,61,26,13,13,45,24,36,36,35,32,88,10 106 | 1,57,52,21,61,26,22,14,45,24,36,36,35,32,88,0 107 | 1,38,52,2,10,11,13,17,45,24,36,36,35,32,88,0 108 | 1,57,52,14,61,26,6,11,30,24,36,36,35,28,88,22 109 | 1,38,52,2,10,26,6,15,30,24,36,36,35,28,88,40 110 | 1,57,52,2,29,26,13,11,30,23,17,36,5,28,88,40 111 | 1,57,43,21,61,26,22,11,45,30,17,36,5,28,88,40 112 | 1,57,52,9,29,26,31,10,45,24,12,36,5,10,88,0 113 | 1,38,52,9,10,11,6,2,30,24,17,24,5,10,88,0 114 | 1,38,52,9,10,11,6,14,30,24,17,24,5,10,88,0 115 | 1,38,52,2,10,11,22,17,45,24,36,22,35,32,88,0 116 | 1,38,43,2,10,11,13,17,30,24,36,24,35,32,88,0 117 | 1,38,43,2,10,11,13,2,30,23,36,36,35,32,88,22 118 | 1,38,52,2,10,11,13,14,30,30,36,36,35,32,88,22 119 | 1,57,43,2,10,11,22,17,30,23,36,24,35,32,88,0 120 | 1,57,43,2,10,11,13,14,45,24,36,22,35,32,88,22 121 | 1,38,52,14,61,11,22,2,45,23,36,36,35,32,88,22 122 | 1,38,52,9,29,11,22,11,45,30,36,22,35,32,88,22 123 | 1,57,52,9,29,11,31,17,45,30,36,22,35,32,88,22 124 | 1,57,52,2,10,26,28,15,45,23,36,36,35,32,88,22 125 | 1,38,43,2,10,11,22,17,30,23,36,22,35,32,88,22 126 | 1,38,52,2,10,11,22,7,45,24,36,36,35,32,88,22 127 | 1,38,52,2,10,11,22,2,45,24,36,36,35,32,88,22 128 | 1,38,52,2,10,11,22,11,45,30,36,36,35,32,88,22 129 | 1,38,52,9,29,11,22,17,45,24,36,36,35,32,9,22 130 | 1,57,52,2,10,11,22,11,30,30,36,36,35,32,9,22 131 | 1,38,52,2,10,11,22,11,45,30,36,36,35,32,88,22 132 | 1,57,52,6,29,26,31,15,45,24,36,36,35,32,88,22 133 | 1,38,43,5,10,11,31,13,45,30,36,24,35,32,88,22 134 | 1,38,52,9,10,26,22,13,45,24,36,36,35,32,88,22 135 | 1,38,52,9,10,26,31,13,45,24,36,24,35,32,88,22 136 | 1,38,52,2,10,26,31,13,45,30,36,36,35,32,88,22 137 | 1,38,43,9,29,26,31,13,30,23,36,36,35,32,88,22 138 | 1,57,52,2,10,50,13,11,45,24,36,24,35,32,88,22 139 | 1,57,52,2,10,50,13,15,45,24,36,16,35,32,88,22 140 | 1,38,52,14,61,50,22,11,30,30,36,36,35,32,88,22 141 | 1,38,43,14,61,50,22,11,45,30,36,36,35,32,88,22 142 | 1,57,52,9,29,50,31,11,45,30,36,22,35,28,88,22 143 | 1,57,52,2,10,50,22,11,45,24,36,22,35,28,88,22 144 | 1,38,43,2,10,50,31,11,45,30,36,36,35,28,88,22 145 | 1,38,43,2,10,26,13,11,16,23,36,22,35,28,88,22 146 | 1,38,43,2,10,26,22,11,45,30,36,22,35,28,88,22 147 | 1,57,43,2,10,50,22,11,45,24,36,36,35,28,88,22 148 | 1,38,43,2,10,26,22,11,45,30,36,36,35,28,88,22 149 | 1,57,43,9,29,50,13,17,45,24,36,36,35,28,88,22 150 | 1,57,52,14,61,50,22,17,45,24,36,36,35,28,88,22 151 | 1,57,52,9,29,50,22,17,30,23,36,16,35,28,88,22 152 | 1,57,43,2,10,50,22,17,45,23,36,36,35,28,88,22 153 | 1,57,43,2,10,50,22,17,30,23,36,36,35,28,88,22 154 | 1,57,52,9,10,50,13,2,45,24,36,36,35,32,88,22 155 | 1,57,43,21,61,50,22,17,45,24,36,22,35,32,88,22 156 | 1,38,43,4,29,50,13,2,30,23,36,36,35,32,88,22 157 | 1,57,43,9,10,50,6,15,30,24,36,22,35,28,88,22 158 | 1,57,43,2,10,50,13,7,30,23,36,22,35,28,88,22 159 | 1,57,52,2,10,50,22,15,45,24,36,22,35,28,88,22 160 | 1,57,52,2,10,50,31,11,45,30,36,22,35,28,88,22 161 | 1,57,52,2,10,50,22,11,45,30,36,22,35,28,88,22 162 | 1,57,52,9,29,26,13,10,45,24,36,36,35,28,88,22 163 | 1,57,52,9,29,26,13,17,45,24,36,24,35,28,88,22 164 | 1,38,43,23,61,11,13,11,30,23,17,22,5,28,88,0 165 | 1,57,52,23,61,11,13,10,45,24,17,36,5,10,88,0 166 | 1,57,43,14,61,11,13,13,45,24,17,36,5,10,88,0 167 | 1,57,52,5,10,11,6,14,30,24,36,22,5,10,88,0 168 | 1,38,43,9,29,11,22,14,30,23,36,22,5,10,88,0 169 | 1,57,43,2,10,11,31,14,30,23,36,24,5,10,88,0 170 | 1,38,43,9,29,11,13,14,30,23,36,22,5,10,88,0 171 | 1,38,43,2,10,11,13,14,30,30,36,2,5,10,88,0 172 | 1,38,5,9,29,11,6,14,16,30,36,2,5,10,88,0 173 | 1,5,5,1,10,11,6,2,9,24,36,2,5,10,88,0 174 | 1,57,43,2,10,11,31,14,30,23,36,24,5,10,88,0 175 | 1,38,52,2,10,11,13,14,30,23,36,36,5,10,88,0 176 | 1,38,43,2,10,11,22,7,45,30,36,22,29,32,88,10 177 | 1,38,52,9,29,11,22,11,30,23,17,36,29,28,88,18 178 | 1,57,52,2,10,26,31,11,45,30,17,22,29,28,88,18 179 | 1,38,52,9,10,11,22,15,30,23,17,36,29,28,88,18 180 | 1,38,52,2,10,11,31,17,45,24,17,16,29,28,88,18 181 | 1,38,43,14,61,11,13,15,16,23,36,36,29,28,88,18 182 | 1,38,52,9,29,11,22,15,45,24,36,36,29,28,88,18 183 | 1,38,43,9,29,11,22,15,30,23,17,22,29,28,88,18 184 | 1,38,52,2,10,11,28,15,45,23,36,22,29,28,88,18 185 | 1,38,52,9,29,26,6,13,16,30,12,22,21,30,88,40 186 | 1,57,52,2,10,26,22,7,45,24,12,22,21,30,88,7 187 | 1,38,43,2,10,26,31,15,30,23,17,22,21,30,88,7 188 | 1,57,43,2,10,11,13,11,45,24,12,36,21,30,88,7 189 | 1,57,43,2,10,26,13,17,30,30,17,16,21,30,88,0 190 | 1,57,52,2,10,26,22,15,45,24,17,16,21,30,88,7 191 | 1,57,52,2,10,26,13,15,45,24,17,22,21,30,88,7 192 | 1,57,52,2,10,26,22,7,45,30,17,22,21,30,88,0 193 | 1,57,52,2,10,11,13,11,45,24,36,22,35,30,88,0 194 | 1,57,43,2,10,26,13,14,45,24,36,22,21,30,88,0 195 | 1,57,52,2,10,26,22,15,45,24,36,22,21,30,88,0 196 | 1,57,52,21,61,11,13,10,45,24,36,36,35,30,88,0 197 | 1,38,52,9,29,26,6,11,30,24,12,22,21,30,88,40 198 | 0,38,52,14,61,11,6,10,30,24,17,22,21,32,88,0 199 | 0,5,52,0,0,11,6,7,9,30,12,2,21,30,9,0 200 | 0,5,5,0,0,11,6,2,9,6,12,2,35,10,3,0 201 | 0,38,52,1,10,11,6,17,16,30,17,24,5,10,3,22 202 | 0,57,43,1,10,11,6,11,30,24,12,36,5,10,9,0 203 | 0,5,5,0,0,11,6,2,0,6,36,2,5,10,9,0 204 | 0,38,43,0,0,11,6,14,30,24,17,2,5,10,88,0 205 | 0,38,52,2,10,26,6,11,16,30,17,36,35,28,88,40 206 | 0,38,5,2,10,26,6,15,16,30,27,16,10,32,9,22 207 | 0,5,5,0,0,11,6,2,0,6,17,2,5,10,3,0 208 | 0,5,5,2,29,11,6,10,16,6,17,36,5,28,88,0 209 | 0,38,5,2,29,11,6,17,9,23,12,24,35,28,3,3 210 | 0,5,5,0,0,11,6,2,9,24,17,2,5,28,3,0 211 | 0,38,43,4,29,11,6,10,0,17,12,36,10,0,9,7 212 | 0,57,52,2,10,50,6,11,30,24,12,22,5,32,0,10 213 | 0,5,5,0,0,11,6,2,0,6,36,2,35,10,88,0 214 | 0,38,52,2,10,26,6,14,16,30,8,36,35,28,9,10 215 | 0,5,5,0,0,11,6,14,9,30,36,2,5,28,0,0 216 | 0,38,5,2,10,11,6,11,16,23,36,22,21,32,88,10 217 | 0,38,5,1,0,11,6,7,16,30,8,24,35,28,9,40 218 | 0,38,5,5,61,11,6,15,9,30,8,36,5,32,9,10 219 | 0,5,5,0,0,11,6,2,9,24,36,2,5,10,88,0 220 | 0,38,52,0,0,11,6,14,30,30,17,2,5,10,88,0 221 | 0,5,5,0,0,11,6,2,0,6,17,2,35,32,3,0 222 | 0,38,5,9,29,11,6,7,9,17,12,22,10,28,3,3 223 | 0,5,5,0,0,11,6,2,9,6,12,2,21,30,9,0 224 | 0,38,52,0,0,11,6,15,16,30,12,22,5,32,0,10 225 | 0,57,43,2,10,26,6,15,16,24,8,16,5,28,9,10 226 | 0,5,5,0,0,11,6,2,0,6,36,2,5,28,3,0 227 | 0,5,5,0,0,11,6,2,0,6,36,2,5,10,9,0 228 | 0,5,5,9,10,11,6,2,9,24,36,36,29,32,88,10 229 | 0,5,5,0,0,11,6,2,9,24,17,2,5,28,3,0 230 | 0,38,43,9,29,26,6,11,16,30,17,22,10,10,9,3 231 | 0,38,43,0,0,11,6,7,30,24,17,24,5,28,88,0 232 | 0,38,43,0,0,11,6,15,16,30,17,2,5,10,9,0 233 | 0,5,5,0,0,11,6,2,9,24,17,2,5,10,3,0 234 | 0,38,52,9,29,11,6,15,16,30,8,36,21,28,88,22 235 | 0,5,5,0,0,11,6,2,9,24,36,2,5,28,3,22 236 | 0,38,5,1,10,11,6,15,9,30,17,2,35,28,88,0 237 | 0,5,5,0,0,11,6,2,0,6,36,2,5,10,9,0 238 | 0,5,5,0,0,11,6,2,0,6,17,2,5,10,3,0 239 | 0,38,5,0,0,11,6,15,16,30,36,2,21,30,9,0 240 | 0,5,5,0,0,11,6,2,9,24,36,2,5,28,3,22 241 | 0,5,5,0,0,11,6,2,0,6,12,2,35,28,3,0 242 | 0,5,5,0,0,11,6,2,9,24,17,2,5,28,9,0 243 | 0,38,43,1,10,11,6,13,16,30,12,2,5,10,3,3 244 | 0,5,5,14,61,26,6,2,0,30,27,24,10,32,88,22 245 | 0,57,43,2,10,26,6,17,30,24,17,22,21,30,88,40 246 | 0,5,5,0,0,11,6,2,9,6,36,2,21,30,88,0 247 | 0,5,5,0,0,11,6,2,0,6,17,2,5,10,3,0 248 | 0,38,43,0,0,11,6,13,16,30,17,2,5,10,88,0 249 | 0,38,5,0,0,11,6,7,0,17,36,2,21,30,88,10 250 | 0,5,5,0,0,11,6,2,9,6,36,2,5,28,0,0 251 | 0,38,5,2,10,11,6,7,16,30,8,16,5,10,3,3 252 | 0,38,5,0,0,11,6,10,9,6,27,2,5,28,88,10 253 | 0,5,5,0,0,11,6,2,9,6,36,2,5,28,3,0 254 | 0,5,5,0,0,11,6,2,9,24,36,2,5,10,88,0 255 | 0,5,5,0,0,11,6,2,0,6,36,2,5,10,9,0 256 | 0,38,5,0,0,11,6,10,9,30,12,2,35,10,3,3 257 | 0,57,52,2,10,50,6,11,30,24,27,16,10,28,9,3 258 | 0,57,52,4,29,11,6,14,16,23,36,22,29,32,88,22 259 | 0,5,5,0,0,11,6,2,0,6,36,2,5,10,9,0 260 | 0,38,5,21,61,11,6,15,16,30,12,36,29,28,88,18 261 | 0,38,43,9,29,11,6,11,16,30,27,36,10,0,9,3 262 | 0,38,52,2,10,11,6,7,16,30,12,36,10,0,9,3 263 | 0,38,43,0,0,11,6,10,9,30,17,2,5,28,88,0 264 | 0,38,52,2,10,11,6,11,16,30,17,22,21,30,88,0 265 | 0,38,43,0,0,11,6,7,30,24,17,2,5,10,3,22 266 | 0,38,5,0,0,11,6,17,0,17,8,2,5,32,0,10 267 | 0,38,5,2,10,26,6,17,9,23,8,16,10,0,9,3 268 | 0,38,43,1,10,11,6,11,16,23,17,24,35,10,9,0 269 | 0,5,5,0,0,11,6,2,9,6,17,2,35,28,3,0 270 | 0,5,5,0,0,11,6,2,9,24,17,2,35,28,0,3 271 | 0,5,5,0,0,11,6,2,9,6,17,2,5,10,88,0 272 | 0,38,43,9,29,11,6,11,16,30,8,24,10,0,9,3 273 | 0,38,43,2,10,11,6,7,30,24,36,16,21,30,88,0 274 | 0,5,5,0,0,11,6,2,9,24,36,2,21,30,88,0 275 | 0,57,43,0,0,11,6,15,30,24,36,2,35,32,88,0 276 | 0,5,5,0,0,11,6,2,16,24,36,2,35,28,9,0 277 | 0,5,5,0,0,11,6,2,9,6,17,2,35,28,3,0 278 | 0,5,5,0,0,11,6,2,0,6,36,2,35,32,88,0 279 | 0,5,5,0,0,11,6,2,0,6,36,2,35,32,88,0 280 | 0,38,43,2,10,11,6,17,9,17,8,16,35,28,3,22 281 | 0,38,43,21,61,11,6,14,16,30,27,22,10,10,9,3 282 | 0,38,43,5,10,11,6,11,0,17,12,36,10,0,88,3 283 | 0,5,5,1,0,11,6,2,9,24,12,24,35,10,3,3 284 | 0,38,5,2,10,11,6,13,16,30,17,22,10,0,3,3 285 | 0,5,5,0,0,11,6,11,16,24,36,2,5,10,9,0 286 | 0,5,5,0,0,11,6,2,0,6,36,2,35,28,3,0 287 | 0,38,5,2,10,11,6,17,16,30,12,24,10,28,3,3 288 | 0,38,52,2,10,11,6,11,16,23,36,22,21,30,88,0 289 | 0,5,5,0,0,11,6,2,9,6,36,2,5,10,9,0 290 | 0,38,52,0,0,11,6,15,30,24,36,2,35,30,9,0 291 | 0,5,5,2,10,11,6,2,9,24,12,36,21,32,9,10 292 | 0,5,5,0,0,11,6,2,9,24,36,2,5,10,0,0 293 | 0,5,5,0,0,11,6,2,0,6,36,2,35,32,88,0 294 | 0,5,5,0,0,11,6,2,9,6,36,2,5,28,3,0 295 | 0,5,5,6,29,11,6,2,9,6,36,36,35,28,88,22 296 | 0,5,5,0,0,11,6,2,0,6,36,2,5,10,9,0 297 | 0,5,5,0,0,11,6,2,9,24,17,2,35,28,3,0 298 | 0,38,5,0,0,11,6,15,16,30,17,2,21,30,9,0 299 | 0,38,5,2,10,11,6,10,0,17,12,22,35,10,9,22 300 | 0,5,5,0,0,11,6,2,0,6,17,2,5,10,9,0 301 | 0,38,5,0,0,11,6,7,0,17,12,2,35,28,0,3 302 | 0,38,43,2,10,11,6,17,16,30,12,22,35,10,3,3 303 | 0,5,5,0,0,11,6,2,9,6,12,2,35,28,3,0 304 | 0,38,52,1,10,11,6,7,16,23,12,24,21,30,9,0 305 | 0,57,43,2,10,26,6,15,16,30,17,16,35,28,3,0 306 | 0,38,43,9,29,11,6,17,30,24,12,24,10,10,9,7 307 | 0,38,52,2,10,11,6,17,30,30,17,16,29,28,9,7 308 | 0,57,52,0,0,11,6,14,16,23,17,2,35,32,3,3 309 | 0,38,43,2,10,26,13,15,30,24,12,16,29,32,3,22 310 | 0,38,52,0,0,11,13,13,30,24,17,2,35,10,9,40 311 | 0,38,52,2,10,11,6,13,30,24,12,22,21,30,88,7 312 | 0,38,43,2,29,11,13,11,30,24,17,22,35,10,9,40 313 | 0,38,52,0,0,11,6,11,30,24,36,2,21,32,3,0 314 | 0,57,52,2,10,50,6,10,30,24,36,16,35,32,88,22 315 | 0,38,52,9,29,26,13,11,0,17,8,22,10,28,9,3 316 | 0,38,52,2,10,26,6,14,30,24,8,22,10,28,88,3 317 | 0,57,52,2,10,11,6,13,30,24,36,22,5,10,9,0 318 | 0,38,43,0,0,11,13,15,30,23,17,2,35,10,3,0 319 | 0,57,43,9,29,26,13,7,16,23,8,36,10,0,88,3 320 | 0,57,52,2,10,13,6,14,30,24,36,16,21,30,3,10 321 | 0,57,52,2,10,11,6,13,30,24,36,16,21,30,88,0 322 | 0,57,52,2,10,26,13,15,45,24,17,22,10,10,88,3 323 | 0,38,52,5,10,11,13,11,16,23,12,36,21,32,9,10 324 | 0,38,43,2,10,26,13,11,30,30,8,36,21,32,88,10 325 | 0,57,52,2,10,50,13,11,30,24,8,36,5,30,0,18 326 | 0,57,52,2,10,26,6,17,30,24,17,16,29,32,9,22 327 | 0,57,52,9,10,11,6,14,30,24,12,36,10,0,88,7 328 | 0,57,43,0,0,50,6,15,0,0,0,0,0,0,0,0 329 | 0,57,52,2,10,50,6,10,30,24,8,24,5,32,0,18 330 | 0,57,43,2,10,26,6,7,30,24,27,22,29,32,88,22 331 | 0,57,43,2,10,26,6,11,30,24,36,16,21,30,88,10 332 | 0,57,43,2,10,26,13,13,30,24,36,16,10,10,88,3 333 | 0,38,52,1,10,11,6,17,9,17,8,36,5,30,0,10 334 | 0,38,52,2,10,11,6,17,30,24,17,22,5,10,3,40 335 | 0,38,52,9,29,11,6,15,30,24,12,36,10,0,9,7 336 | 0,38,52,2,10,50,6,10,30,30,17,22,10,10,9,3 337 | 0,38,43,21,61,11,6,17,9,17,8,36,21,30,88,10 338 | 0,38,52,2,10,26,6,17,30,24,17,36,10,10,3,7 339 | 0,57,52,2,10,50,6,17,30,24,27,16,10,30,3,10 340 | 0,38,52,2,29,11,6,11,16,30,12,22,5,32,0,10 341 | 0,38,52,0,0,11,6,15,16,23,17,2,35,28,0,0 342 | 0,38,43,2,10,11,13,14,16,23,12,22,21,30,88,22 343 | 0,38,52,9,10,50,6,13,30,24,12,16,29,30,9,10 344 | 0,57,52,2,10,26,13,11,30,24,8,16,35,10,9,40 345 | 0,38,43,0,0,11,6,15,30,30,36,2,21,30,9,0 346 | 0,57,52,0,0,11,13,15,45,24,17,2,35,28,0,0 347 | 0,38,52,2,10,11,13,10,16,23,8,36,35,28,88,40 348 | 0,38,52,2,10,11,6,13,30,24,12,36,21,30,88,40 349 | 0,38,43,9,10,26,13,11,16,17,12,22,5,32,0,10 350 | 0,38,43,0,0,11,6,11,30,24,12,2,5,10,3,0 351 | 0,57,52,2,10,26,6,17,30,24,36,22,35,28,0,3 352 | 0,38,52,2,10,26,6,11,30,24,12,22,21,30,88,10 353 | 0,57,43,1,10,11,13,17,30,24,36,22,5,10,3,0 354 | 0,38,43,2,10,11,6,11,30,30,17,36,35,28,88,22 355 | 0,57,52,1,10,11,6,14,30,24,17,36,5,10,9,0 356 | 0,38,43,0,0,11,6,13,30,30,17,24,5,28,3,22 357 | 0,57,52,0,0,11,6,2,30,24,17,2,5,10,3,0 358 | 0,57,52,2,10,11,6,11,16,30,36,22,29,32,88,40 359 | 0,57,52,2,10,11,13,11,30,24,8,36,10,0,88,3 360 | 0,57,43,2,10,26,6,11,30,30,36,36,21,30,3,10 361 | 0,57,52,2,10,50,13,13,30,24,8,36,29,30,88,10 362 | 0,38,52,0,0,11,13,10,9,17,36,2,35,32,88,0 363 | 0,57,43,2,10,11,6,7,16,23,12,36,5,28,0,0 364 | 0,38,52,2,10,26,13,14,45,24,17,16,10,10,3,3 365 | 0,38,43,2,10,26,13,11,9,17,36,16,10,10,9,3 366 | 0,57,5,2,10,26,6,17,30,30,8,22,10,10,3,3 367 | 0,38,52,2,10,11,13,7,45,24,17,22,5,28,0,22 368 | 0,38,52,9,29,11,6,2,9,17,8,36,35,10,9,3 369 | 0,38,43,0,0,11,6,7,16,23,36,2,21,30,3,0 370 | 0,38,52,2,10,26,6,15,16,23,36,16,10,0,9,3 371 | 0,38,43,2,10,26,6,10,16,23,17,22,35,28,88,40 372 | 0,38,43,2,10,26,6,14,9,17,12,16,5,32,0,10 373 | 0,57,52,2,10,50,13,13,45,24,8,22,21,32,88,22 374 | 0,38,52,2,10,50,13,15,30,24,12,22,29,32,9,10 375 | 0,38,43,1,10,11,6,17,16,23,17,2,5,10,88,0 376 | 0,38,43,1,10,11,6,11,16,30,8,36,35,10,88,40 377 | 0,57,43,2,10,11,6,14,30,24,36,22,35,32,88,0 378 | 0,38,43,2,10,26,6,11,16,30,36,16,10,10,88,3 379 | 0,38,43,2,10,26,6,15,9,17,8,22,5,30,0,18 380 | 0,57,52,2,10,26,6,11,30,24,12,22,29,32,88,22 381 | 0,38,43,2,10,26,6,17,30,24,36,22,35,28,0,3 382 | 0,57,52,2,10,11,6,13,9,17,36,24,5,10,0,0 383 | 0,57,52,1,10,11,6,17,30,24,17,24,5,10,9,0 384 | 0,57,52,14,61,50,13,15,30,24,8,22,5,32,0,18 385 | 0,38,43,2,10,50,6,11,30,24,8,24,5,32,0,10 386 | 0,38,43,2,10,11,13,11,30,30,17,36,35,28,3,3 387 | 0,38,43,9,29,11,6,15,16,23,12,24,10,0,88,3 388 | 0,38,52,23,61,11,6,11,30,24,36,24,5,10,88,0 389 | 0,38,43,2,10,11,6,7,16,23,27,22,5,10,9,22 390 | 0,38,52,2,10,26,6,13,30,30,8,22,35,10,3,3 391 | 0,57,52,0,0,11,6,11,30,24,17,2,5,28,88,0 392 | 0,57,52,2,10,26,6,2,30,24,36,16,10,0,3,3 393 | 0,57,52,2,10,26,13,11,30,24,17,36,21,30,88,0 394 | -------------------------------------------------------------------------------- /Figures/Figure 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scumechanics/Landslide-Susceptibility-Prediction-Using-Machine-Learning-Algorithms/1971dd6f90cedb6ac40b9a23b84e89f8380e026a/Figures/Figure 1.jpg -------------------------------------------------------------------------------- /Figures/Figure 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scumechanics/Landslide-Susceptibility-Prediction-Using-Machine-Learning-Algorithms/1971dd6f90cedb6ac40b9a23b84e89f8380e026a/Figures/Figure 2.jpg -------------------------------------------------------------------------------- /Figures/Figure 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scumechanics/Landslide-Susceptibility-Prediction-Using-Machine-Learning-Algorithms/1971dd6f90cedb6ac40b9a23b84e89f8380e026a/Figures/Figure 3.jpg -------------------------------------------------------------------------------- /Figures/Figure 4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scumechanics/Landslide-Susceptibility-Prediction-Using-Machine-Learning-Algorithms/1971dd6f90cedb6ac40b9a23b84e89f8380e026a/Figures/Figure 4.jpg -------------------------------------------------------------------------------- /Figures/Figure 5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scumechanics/Landslide-Susceptibility-Prediction-Using-Machine-Learning-Algorithms/1971dd6f90cedb6ac40b9a23b84e89f8380e026a/Figures/Figure 5.jpg -------------------------------------------------------------------------------- /Figures/Figure 6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scumechanics/Landslide-Susceptibility-Prediction-Using-Machine-Learning-Algorithms/1971dd6f90cedb6ac40b9a23b84e89f8380e026a/Figures/Figure 6.jpg -------------------------------------------------------------------------------- /Figures/Figure 7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scumechanics/Landslide-Susceptibility-Prediction-Using-Machine-Learning-Algorithms/1971dd6f90cedb6ac40b9a23b84e89f8380e026a/Figures/Figure 7.jpg -------------------------------------------------------------------------------- /Figures/Graphical Abstract.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scumechanics/Landslide-Susceptibility-Prediction-Using-Machine-Learning-Algorithms/1971dd6f90cedb6ac40b9a23b84e89f8380e026a/Figures/Graphical Abstract.jpg -------------------------------------------------------------------------------- /Figures/Sub Figure 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scumechanics/Landslide-Susceptibility-Prediction-Using-Machine-Learning-Algorithms/1971dd6f90cedb6ac40b9a23b84e89f8380e026a/Figures/Sub Figure 1.jpg -------------------------------------------------------------------------------- /Figures/Sub Figure 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scumechanics/Landslide-Susceptibility-Prediction-Using-Machine-Learning-Algorithms/1971dd6f90cedb6ac40b9a23b84e89f8380e026a/Figures/Sub Figure 2.jpg -------------------------------------------------------------------------------- /Figures/Sub Figure 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scumechanics/Landslide-Susceptibility-Prediction-Using-Machine-Learning-Algorithms/1971dd6f90cedb6ac40b9a23b84e89f8380e026a/Figures/Sub Figure 3.jpg -------------------------------------------------------------------------------- /Figures/Sub Figure 4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scumechanics/Landslide-Susceptibility-Prediction-Using-Machine-Learning-Algorithms/1971dd6f90cedb6ac40b9a23b84e89f8380e026a/Figures/Sub Figure 4.jpg -------------------------------------------------------------------------------- /Figures/Sub Figure 5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scumechanics/Landslide-Susceptibility-Prediction-Using-Machine-Learning-Algorithms/1971dd6f90cedb6ac40b9a23b84e89f8380e026a/Figures/Sub Figure 5.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Muhammad Sakib Khan Inan 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Landslide-Susceptibility-Prediction-Using-Machine-Learning-Algorithms 2 | 3 | 4 | ### Coding Info 5 | Programming Language: Python 3\ 6 | Environment: Anaconda Distribution 7 | 8 | ### Machine Learning Libraries Required 9 | Scikit-Learn\ 10 | Yellowbrick\ 11 | Numpy\ 12 | Pandas\ 13 | Seaborn\ 14 | Matplotlib\ 15 | SHAP\ 16 | Scipy\ 17 | XgBoost 18 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | jupyter 2 | matplotlib 3 | numpy 4 | pandas 5 | scipy 6 | yellowbrick 7 | xgboost 8 | shap 9 | seaborn 10 | scikit-learn 11 | --------------------------------------------------------------------------------