--- tags: real experiments --- # Male Control 3Mar2020 ##### there is a somewhat strange thing i noticed, that animal in cage3 has been a bit of an outlier in the last 2 experiments.. To test this, we ended this experiment earlier, and switched animals in cages 2 and 3. See 5Mar document Cage 0 - 19.1g - 22M Cage 1 - 18.2g - 25M Cage 2 - 22.9g - 80M Cage 3 - 23.2g - 53M Cage 4 - 22.3g - 1047M Cage 5 - 22.1g - 23M Cage 6 - 23.0g - 1048M ``` library(tidyverse) library(lubridate) library(readr) cageweight0 <- 19.1 cageweight1 <- 18.2 cageweight2 <- 22.9 cageweight3 <- 23.1 cageweight4 <- 22.3 cageweight5 <- 22.1 cageweight6 <- 23.0 animalID0 <- "22M" animalID1 <- "25M" animalID2 <- "80M" animalID3 <- "53M" animalID4 <- "1047M" animalID5 <- "23M" animalID6 <- "1048M" datafile <- "~/Dropbox/Cactus_Mouse_Physiology/data/3March20/mar3.csv" mar3 <- read_csv(datafile, col_types = cols(Animal = col_double(), StartDate = col_date(format = "%m/%d/%Y"), deltaCO2 = col_double(), deltaH2O = col_double(), H2Oml = col_double(), VCO2 = col_double(), StartTime = col_time(format = "%H:%M:%S"))) '%!in%' <- function(x,y)!('%in%'(x,y)) mar3 <- mar3 %>% mutate(EE = 0.06*(3.941*VO2 + 1.106*VCO2)) %>% mutate(RQ = VCO2/VO2) %>% mutate(animal = round(Animal, digits=0)) %>% mutate(Animal = NULL) %>% unite("DateTime", StartDate:StartTime, remove = FALSE, sep = " ") %>% mutate(weight = ifelse(animal == 0, cageweight0, ifelse(animal == 1, cageweight1, ifelse(animal == 2, cageweight2, ifelse(animal == 3, cageweight3, ifelse(animal == 4, cageweight4, ifelse(animal == 5, cageweight5, ifelse(animal == 6, cageweight6, NA)))))))) %>% mutate(Animal_ID = ifelse(animal == 7, 'baseline', ifelse(animal == 0, animalID0, ifelse(animal == 1, animalID1, ifelse(animal == 2, animalID2, ifelse(animal == 3, animalID3, ifelse(animal == 4, animalID4, ifelse(animal == 5, animalID5, ifelse(animal == 6, animalID6, NA))))))))) %>% mutate(H2Omg_edit = ifelse(hour(StartTime) == 8, H2Omg - 0.001, ifelse(hour(StartTime) == 7, H2Omg - 0.001, ifelse(hour(StartTime) == 9, H2Omg - 0.002, ifelse(hour(StartTime) == 10, H2Omg - 0.002, ifelse(hour(StartTime) == 19, H2Omg + 0.001, ifelse(hour(StartTime) == 20, H2Omg + 0.001, ifelse(hour(StartTime) == 21, H2Omg + 0.001, ifelse(hour(StartTime) == 22, H2Omg + 0.001, ifelse(hour(StartTime) %!in% c(7,8,9,10,20,21,22,19), H2Omg, NA)))))))))) %>% mutate_at("H2Omg_edit", as.numeric) %>% mutate(corEE = EE/weight) %>% mutate(sex = "Male") metric <- "EE" target <- c(0,1,2,3,4,5,6) cages3mar <- mar3 %>% filter(animal %in% target) #cages26feb <- with( cages ,cages[ hour( StartTime ) >= 0 & hour( StartTime ) < 4 , ] ) measurement <- cages3mar %>% select(metric) df<-as.data.frame(measurement[[metric]]) legend_title <- "Animal ID" p <- ggplot(data = cages3mar,aes(x=as.POSIXct(StartTime),y=measurement[[metric]])) p <- p + geom_point(aes(group=as.factor(Animal_ID), color=as.factor(Animal_ID)), size = 3) p <- p + theme_grey(base_size = 15) p <- p + geom_smooth(data=df$V1, method='loess', span=.3) p <- p + labs(x = "", y = metric) p <- p + scale_color_brewer(legend_title, palette="Paired") p <- p + scale_x_datetime(date_breaks = "2 hours", date_labels = "%H:%M") #p <- p + geom_hline(yintercept = 0.8907387) p ``` ![](https://i.imgur.com/B955n4e.png)