From d65f83ebea57d33276c0549524ed3fdd5620c885 Mon Sep 17 00:00:00 2001 From: Min-Yang Lee Date: Thu, 30 Nov 2023 11:30:06 -0500 Subject: [PATCH] don't show ab1 for private, no measurements. --- .../data_extraction_processing/processing/catch_summaries.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stata_code/data_extraction_processing/processing/catch_summaries.txt b/stata_code/data_extraction_processing/processing/catch_summaries.txt index a3df36c..217b2cf 100644 --- a/stata_code/data_extraction_processing/processing/catch_summaries.txt +++ b/stata_code/data_extraction_processing/processing/catch_summaries.txt @@ -741,7 +741,7 @@ list year month inches total landed pct_kept if inches>=15 & inches<=18, sepby( Private size limit in FY 2023 is 17". MRIP data rounds down to the (a 16.9" fish is reported as 16"). Starting in May, 2023 nothing under 17" should be retained. -There were no B2's measured on Private boats, so I've set the length distribution of the Private B2's to empty. +There were no B2's measured on Private boats, so I've set the length distribution of the Private B2's to empty. There were also no ab1's measured on Private boats in April. <> @@ -757,6 +757,8 @@ sort mode year month inches replace b2=. if mode=="Private" +replace ab1=. if mode=="Private" & month==4 + format ab1 b2 %8.0fc <>