Modules conventions
R/histogram.R
holds all the code for the module.histogramUI()
is the module UI. If it’s used primarily for input or output I’d call ithistogramInput()
orhistogramOuput()
instead.histogramServer()
is the module server.histogramApp()
creates a complete app for interactive experimentation and more formal testing.