You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
yeah there is a bit going on here to simplify the stats: , with some elaboration here:
The source data just lists: calves, heifers, steers etc. It doesn't list whether they are destined for beef or dairy production. I've used the ratio of beef to dairy mothers to estimate which will be in each track.
Dairy breed cows which are male will end up in the beef track, hence:
cattle_in_beef_track = (
dairy_calf_boys + beef_calves + beef_steers + beef_cows + beef_heifers
)
cattle_in_dairy_track = dairy_calf_girls + dairy_cows + dairy_heifers
Note: steers = castrated male, and dairy_steers doesn't exist as male cows can't make milk
All this said, I think you have highlighted an error! I think it should be a percentage not a ratio
dairy_mother_percent = dairy_cows / (beef_cows+dairy_cows)
The text was updated successfully, but these errors were encountered: