I'm working on an android application which need to generate descriptive statistics ( mean, sd, min max, quartiles) and CDF / PDF histogram plots from local SQLite DB data.
R is very good with doing such statistical analysis and was wondering if it is possible to call R from Java in Android application ?
If it is not possible to call R from Java in Android , what would be a recommend approach ( package) for such statistical analysis in Android applications ?
Need to have this running w/o connectivity, so a server/cloud approach doesn't work.