For susceptibility mapping, you need to extract point values (for both presence and absent like landslide location with value 1 and non-landslide location with value 0) for causing factor raster maps in ArcGIS. Then export those values as .txt file.
Now all points values for landslide, non-landslide are in one data frame. Last column (Landslide) with 0 and 1 values are also stacked together. You can check total no of rows and see if they are equal to sum of landslide, non-landslide data frames.
So, we now have a data frame for landslide points and non-landslide points. This data frame will be used for training machine learning model. For prediction, we need all these factors values for all the study area (each pixel value), and then we will do the prediction for that data frame based on training data frame. Data preparation for prediction data frame will be covered in the next tutorial.