Difference between lizard and cool random forest
1 answer
sampsize
represents the sample size that is drawn. Thus, it sampsize = 10
will mean that 10 samples have been collected. classwt
- weighing classes. This can be used for a weighted random forest. For example, you can use this to weigh more recent data rather than older data (see here ). Having said that, downsampling (which reduces the sample size) is seemingly just as efficient as class weighting (see here ), so you can but cannot use others as well.
0
source to share