Terry Scantlebury
2017.8.19
For more details on the dataset used in this project, please visit https://archive.ics.uci.edu/ml/datasets/abalone.
The age of abalone is determined by cutting the shell through the cone, staining it, and counting the number of rings through a microscope – a boring and time-consuming task.
Other measurements, which are easier to obtain, can be used to predict the age.
This simplified age calculator uses lm models to estimate age from two inputs parameters
The input parameters are:-
Additionally, the user can also choose to:-
Left side:-
Right side:-
The server side code that performs this calculation looks like
(mtext <-
predict(modelFit,
newdata = data.frame("Sex" = input$sex, "Diameter" = input$diam))
paste(round(mtext * 1.5, 1), "years old")
The UI.R and Server.R files are in this github repository https://github.com/TerryScantlebury/AbaloneAgeCalculator