paste("Martini, S., B. Al Ali, M. Garel, and others. 2013. Effects of Hydrostatic Pressure on Growth and Luminescence of a Moderately-Piezophilic Luminous Bacteria Photobacterium phosphoreum ANT-2200 A. Driks [ed.]. PLoS One 8: e66580. doi:10.1371/journal.pone.0066580")
####### Affichage du tableau des parametres #######
output$parameters<-DT::renderDataTable({
params<-calculate()
paste("The table below gives the parameters estimation.")
DT::datatable(params[,3:8])
#
})
####### Affichage du tableau initial #######
output$raw_data<-DT::renderDataTable({
df<-getData()
DT::datatable(df)
#
})
####### Affichage de la citation #######
output$citation<-renderText({
paste("Martini, S., B. Al Ali, M. Garel, and others. 2013. Effects of Hydrostatic Pressure on Growth and Luminescence of a Moderately-Piezophilic Luminous Bacteria\nPhotobacterium phosphoreum ANT-2200 A. Driks [ed.]. PLoS One 8: e66580. doi:10.1371/journal.pone.0066580")
#
})
####### Fonction de cout #######
cost<-function(Asym,scal,xmid,xdata,ydata){
ymod<-SSlogis(xdata,Asym,xmid,scal)
SSE<-sum((ymod-ydata)^2,na.rm=T)
return(SSE)
}
####### Verify_plot #######
output$verify_plot_2D<-renderPlot({
# on recupereles donnes de l'utilisateur
df<-getData()
req(df)
# on calcule les parametres
params<-calculate()
req(params)
# on assigne les valeurs de params a nos differentes variables
tabPanel("Details",tableOutput('contents'),helpText('You have to format data with tab separartor and dot for decimal. Remove all space in the header from your dataset. Replace it by "_"'),helpText('In your data set there are two arrays, time and cells density (Optic density, Cells number, Biomass ....) ')),
helpText('This is to perform logistic regression to estimate growth rate and maximum cells density. In order to run this application, you have to format your dataset
with tabulation separators. Also, remove all spaces in the dataset header (prefer to use "_" when needed).
Organise your dataset so that there is only two arrays. The first one being the time and the second the cells density
(e. g. optic density, cell number, biomass). This application proposes a method to perform logistic regression to estimate growth rate as well as maximum cells density.'),
withMathJax(helpText('The logistic equation is define as $$x(t) = r.x_0.(1-\\frac{x_0}K)$$'))