আমার জ্ঞান অনুসারে, predict
ফলাফলগুলির জন্য পদ্ধতিটিতে zeroinfl
মানক ত্রুটি অন্তর্ভুক্ত নয়। আপনার লক্ষ্য যদি আত্মবিশ্বাসের অন্তর অন্তর্নির্মিত করা হয় তবে বুটস্ট্র্যাপিং ব্যবহার করার একটি আকর্ষণীয় বিকল্প। আমি আকর্ষণীয় বলেছি কারণ বুটস্ট্র্যাপিংয়ে আরও শক্তিশালী হওয়ার সম্ভাবনা রয়েছে (এসইএসের জন্য সমস্ত অনুমানগুলি পূরণ হলে দক্ষতার ক্ষতিতে)।
আপনি যা চান তা করার জন্য এখানে কিছু রুট কোড দেওয়া আছে। এটি ঠিক কাজ করবে না, তবে আশা করি আপনি প্রয়োজনীয় সংশোধন করতে পারেন।
## load boot package
require(boot)
## output coefficients from your original model
## these can be used as starting values for your bootstrap model
## to help speed up convergence and the bootstrap
dput(round(coef(zeroinfl.fit, "count"), 3))
dput(round(coef(zeroinfl.fit, "zero"), 3))
## function to pass to the boot function to fit your model
## needs to take data, an index (as the second argument!) and your new data
f <- function(data, i, newdata) {
require(pscl)
m <- zeroinfl(count ~ child + camper | persons, data = data[i, ], start = list(count = c(1.598, -1.0428, 0.834), zero = c(1.297, -0.564)))
mparams <- as.vector(t(do.call(rbind, coef(summary(m)))[, 1:2]))
yhat <- predict(m, newdata, type = "response")
return(c(mparams, yhat))
}
## set the seed and do the bootstrap, make sure to set your number of cpus
## note this requires a fairly recent version of R
set.seed(10)
res <- boot(dat, f, R = 1200, newdata = Predict, parallel = "snow", ncpus = 4)
## get the bootstrapped percentile CIs
## the 10 here is because in my initial example, there were 10 parameters before predicted values
yhat <- t(sapply(10 + (1:nrow(Predict)), function(i) {
out <- boot.ci(res, index = i, type = c("perc"))
with(out, c(Est = t0, pLL = percent[4], pUL = percent[5]))
}))
## merge CIs with predicted values
Predict<- cbind(Predict, yhat)
আমি লিখেছি এমন দুটি পৃষ্ঠাগুলি থেকে আমি এই কোডটি আঁকলাম, zeroinfl
জিরো-স্ফীত পোইসনের সাথে শূন্য-স্ফীত পোয়েসন রিগ্রেশন থেকে একটি বুটস্ট্র্যাপিং প্যারামিটার এবং একটি জিরো-ট্রান্সকেটেড নেতিবাচক দ্বিপদী মডেল জিরো-ট্রান্সকেটেড নেতিবাচক দ্বিপদী থেকে ভবিষ্যদ্বাণীযুক্ত মানগুলির জন্য বুটস্ট্র্যাপড আত্মবিশ্বাসের ব্যবধানগুলি কীভাবে পাওয়া যায় তা প্রদর্শন করে one । সম্মিলিত, আশা করি এটি শূন্য-স্ফীত পোষন থেকে পূর্বাভাসিত মানগুলির সাথে কাজ করার জন্য পর্যাপ্ত উদাহরণ সরবরাহ করে। আপনি কিছু গ্রাফিং ধারণা পেতে পারেন :)
predict()
ফাংশনে স্ট্যান্ডার্ড ত্রুটিগুলি কার্যকর করা হয়েছেzeroinfl()
।