View source: R/shinyTaskMasterScript.R
Filters cleaned data using columns ship_type
and ship_name
1 | filter_cleaned_data(cleaned_data, ship_type = "Tanker", ship_name = "MARINUS")
|
@importFrom dplyr filter
@param cleaned_data this is the clean dataset (which is obtained as a result of cleaning the raw dataset that is read into R. This dataset will be filtered in this function.
@param ship_type type of ship with the default value "Tanker" @param ship_name name of ship with the default value "MARINUS"
@return returns cleaned filtered dataset given input values to parameters
@examples filter_cleaned_data(cleaned_data = cleaned_dataset, ship_type = "Cargo", ship_name = "MERI")
@export
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.