Skip to content

Commit

Permalink
R code for Tables
Browse files Browse the repository at this point in the history
  • Loading branch information
jayverhoef committed Nov 21, 2024
1 parent b4c16c4 commit e5331a5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tables/Tables_statewide.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ setwd(paste0('/mnt/ExtraDrive1/Work/desktop_data/2024_papers/',
load('dTerr.rda')
load('dGlac.rda')
load('akpvpolys_sf.rda')
load('dHOterr.rda')
load('dHOglac.rda')

dstk = rbind(dTerr[,c('polyid', 'stockid', 'yr')],
dGlac[,c('polyid', 'stockid', 'yr')])
Expand Down Expand Up @@ -129,4 +131,11 @@ write.csv(current_est_table, file = paste0(tabpath,'current_est_table.csv'),



#-------------------------------------------------------------------------------
# Which stocks had haulout records?
#-------------------------------------------------------------------------------

str(dHOterr)
sort(unique(as.character(dHOterr$stockid)))
sort(unique(as.character(dHOglac$stockid)))
sort(unique(as.character(dGlac$stockid)))

0 comments on commit e5331a5

Please sign in to comment.