Thank you so much for the reply! I will try my best to improve my format of questioning. More specifically, if I have data for each hour for each animal within their own group, is it possible to plot multiple variables for x if their data is all represented in minutes and have the y-axis represent their values? This would make the x-axis "Hour 1, Hour 2, Hour, 3, etc." and then have y-axis reflect the minutes. Lastly, I am trying to have two groups for each timepoint.
attach(my_data)
The following objects are masked from my_data (pos = 3):
Drug, Hour.1, Hour.10,
Hour.11, Hour.12, Hour.13, Hour.14,
Hour.15, Hour.16, Hour.17, Hour.18,
Hour.19, Hour.2, Hour.20, Hour.21,
Hour.22, Hour.23, Hour.24, Hour.25,
Hour.26, Hour.27, Hour.28, Hour.29,
Hour.3, Hour.30, Hour.31, Hour.32,
Hour.33, Hour.34, Hour.35, Hour.36,
Hour.37, Hour.38, Hour.39, Hour.4,
Hour.40, Hour.41, Hour.42, Hour.43,
Hour.44, Hour.45, Hour.46, Hour.47,
Hour.48, Hour.5, Hour.6, Hour.7,
Hour.8, Hour.9
boxplot(Hour.1, Hour.2, Hour.3 ~ Drug)
Error in sort.int(x, na.last = na.last, decreasing = decreasing, ...) :
'x' must be atomic
In addition: Warning messages:
1: In is.na(x) :
is.na() applied to non-(list or vector) of type 'language'
2: In is.na(x) :
is.na() applied to non-(list or vector) of type 'language'