Displaying 2 results from an estimated 2 matches for "nmale".
Did you mean:
male
2011 Jun 21
2
par code help
I am making a barplot using barplot2 from gplots where each bar
represents a specific tree species. I have formatted the species names
on the x-axis so that the genus name is above the species name and
have then rotated the labels 45 degrees to save room. This is my code:
>columncolor<-c("grey20", "grey20", "grey20", "grey70",
2023 Oct 24
1
by function does not separate output from function with mulliple parts
...ond"),25)
mydata
########################
# END Create Dataframe #
########################
############################
# Define function to be run#
############################
DoReg <- function(x){
fit0<-lm(as.numeric(HipFlex) ~ jSex,data=x)
print(summary(fit0))
cat("\nMale\n")
print(contrast(fit0,
list(jSex="Male")))
cat("\nFemale\n")
print(contrast(fit0,
list(jSex="Female")))
cat("\nDifference\n")
print(contrast(fit0,
a=list(jSex="Male"),...