Displaying 1 result from an estimated 1 matches for "breeding_period".
2007 Oct 31
1
Axis Location/Data view in scatterplot3d
...ate the
graph and relocate all three axis (origin (0, 0, 0))so they would be at
the back left so the plotted points would slope down toward the viewer.
Using 'angle' and 'axis' did not get me any closer. Does anyone have
any suggestions?
TIA,
Bret
for(Days_Nesting in 1:55){
Breeding_Period<-1:118
DSR_RGWT= exp(6.6205449-0.0589883*Days_Nesting)/(1+
exp(6.6205449-0.0589883*Days_Nesting))
DSR_BS<-DSR_RGWT^Breeding_Period
DSR_Final<-as.data.frame(cbind(Days_Nesting, Breeding_Period, DSR_BS))
write(c(t(DSR_Final)), "location.txt", append=T, ncolumns=3)
}
dsr_data<-r...