library(pander)
library(caret)
library(dplyr)

Generated by KidStats on r Sys.Date()


Input


Input measurements

| | Diaphyseal Length | Proximal Breadth | Midshaft Breadth | Distal Breadth | | :-------- | :---------------: | :--------------: | :--------------: | :------------: | | Femur | r input$fdl | | r input$fmsb | r input$fdb | | Tibia | r input$tdl | r input$tpb | r input$tmsb | r input$tdb | | Humerus | r input$hdl | r input$hpb | r input$hmsb | r input$hdb | | Radius | r input$rdl | r input$rpb | r input$rmsb | r input$rdb | | Ulna | r input$udl | | r input$umsb | |



Age

Estimation

| Lower Prediction Interval | Estimated Age | Upper Prediction Interval | | :-----------------------: | :--------------------------: | :------------------------: | | r earth_mod()[[2]][2] | r earth_mod()[[2]][1] | r earth_mod()[[2]][3] |


Model


hinges <- add_rownames(data.frame(earth_mod()[[1]]$cuts), "Coefficients")
hinges <- hinges[earth_mod()[[1]]$selected.terms,]
pander(hinges)



SEX

Sex Estimation

| Posterior Female | Posterior Male | | :------------------: | :------------------: | | r fda_mod()[[2]]$F | r fda_mod()[[2]]$M |


Model


fda_coef <- data.frame(coef(fda_mod()[[1]]))
pander(fda_coef)


geanes/kidstats documentation built on May 17, 2019, 12:15 a.m.