Shikhar Mishra

Results 60 issues of Shikhar Mishra

EDIT: 26.02.23 Remaining to do on this PR. Integration with other summary functions (`total` etc) can be done in separate PR's. See their issues - [ ] Add doctests -...

enhancement
good first issue

- Update docs with `add Survey` - Add back Horvitz thompson total with Hartley Rao variance estimation - Integrate HR with `total` with `SurveyDesign` - Add some analytical formulae for...

documentation
enhancement

Draft old progress on raking. Function is not complete yet. Algorithm is about 50% there, plenty of work still to go. @sayantikaSSG can you link all of the references for...

enhancement
maths heavy
logic heavy

Add Taylor series linearisation for variance estimation for arbitrary `SurveyDesign` schemes - [ ] Add taylor series linearisation function(s) - [ ] Integrate with `SurveyDesign`

enhancement
help wanted
high priority
maths heavy

Calculating survey means and totals is relatively straighforward as compared to their variances in certain designs. For example in the Horvitz Thompson estimator, their is a double inclusion probability term...

enhancement
help wanted
high priority

See line 22-27 in [by.jl](https://github.com/xKDR/Survey.jl/blob/main/src/by.jl) ```julia for i = 1:nd filtered_dx = filter(!isnan, Xt_mat[i, :] .- X.statistic[i]) push!(ses, sqrt(sum(filtered_dx .^ 2) / length(filtered_dx))) end replace!(ses, NaN => 0) X.SE =...

bug
enhancement

- [ ] push R code as comments in testing suite, if used R for checking "correctness" of Julia code

To utilise Julian optimisations, we should rethink some aspects of the current codebase for improving type stability. I think a discussion around type hierarchy to improve modularity in code would...

Running the following in R: ```R > dclus2 dclus2_jk

food for thought