Plot for latitudinal data

pr_plot_latitude(df, Fill_NA = FALSE, maxGap = 3)

Arguments

df

dataframe of latitudinal series

Fill_NA

fill in gaps in data

maxGap

no of NAs over which to fill gaps

Value

patchwork object

Examples

df <- pr_get_NRSMicro('GO-SHIP')
#> Rows: 6562 Columns: 157
#> ── Column specification ────────────────────────────────────────────────────────
#> Delimiter: ","
#> chr    (4): code, TripCode, StationName, StationCode
#> dbl  (151): TripCode_depth, Longitude, Latitude, Year, Month, Day, Silicate_...
#> dttm   (1): SampleDateUTC
#> time   (1): Time_24hr
#> 
#>  Use `spec()` to retrieve the full column specification for this data.
#>  Specify the column types or set `show_col_types = FALSE` to quiet this message.
df <- df %>% dplyr::filter(Parameters == 'Archaea_unique_ASVs',
SampleDepth_m < 101)
pr_plot_latitude(df, Fill_NA = TRUE, maxGap = 5)