Once you have loaded the DataSHIELD packages, information about individual functions can be found on the function manual page including:

You can access the help page of a function in a number of ways. To open up the function help page in a webpage:

> options(help_type="html")
> help(insert_function_name)

To open up the help page within R/RStudio:

> help(insert_function_name)

an equivalent command is to use the help operator ?:

> ?(insert_function_name)

An example function help page for ds.histogram is given below.