search for: max_change

Displaying 1 result from an estimated 1 matches for "max_change".

Did you mean: madechange
2016 Apr 20
1
Use multiple cores on Linux
...im <- pred_sim_max %>% group_by(FIPS) %>% summarise(pred_sim = mean(pred_sim_max)) # # Merge with Historical Data max_hist$FIPS <- as.factor(max_hist$FIPS) max_sim$FIPS <- as.factor(max_sim$FIPS) # mykey1<- c("FIPS") setkeyv(max_hist, mykey1) setkeyv(max_sim, mykey1) max_change <- merge(max_hist, max_sim, by=mykey1) max_change$change <- ((max_change$pred_sim-max_change$pred_hist)/max_change$pred_hist)*100 # write.csv(max_change, file = "/work/sd00815/projections_data/year_wk_fe/giss/max/giss_4.5_2021_2050.csv") # 4.5_2081_2100 temp_sim <- read.csv(&q...