Displaying 4 results from an estimated 4 matches for "thour".
Did you mean:
hour
2011 Oct 21
0
nls making R "not responding"
Here is the code I am running:
library(nls2)
modeltest<- function(A,mu,l,b,thour){
out<-vector(length=length(thour))
for (i in 1:length(thour)) {
out[i]<-b+A/(1+exp(4*mu/A*(l-thour[i])+2))
}
return(out)
}
A=1.3
mu=.22
l = 15
b = .07
thour = 1:25
Yvals<-modeltest(A,mu,l,b,thour)-.125+runif(25)/4
st2 <- expand.grid(A = seq(0.1, 1.6,.5), mu = seq(0.01, .41,.1), l=1,...
1999 Oct 20
3
patch for tinc-0.3
...local($name) = @_;
# do not buffer io
select((select(STDOUT), $| = 1)[0]);
select((select(STDERR), $| = 1)[0]);
# redirect stdout and stderr
open(STDOUT, ">>$LOGDIR/tinc.log");
open(STDERR, ">&STDOUT");
}
sub print_log {
($tsec,$tmin,$thour,$mday, $mon,$year,$rest) = localtime(time());
$monno = $mon + 1;
if ($monno<10) {
$monno = "0$monno";
}
if ($mday<10) {
$mday = "0$mday";
}
if ($year > 99) {
$yearno = "20" . $year;
} else {
$yearno = "19" . $year;...
2023 May 02
1
Error in percentage stacked barplot
Dear all,?
I am trying to plot the following table in stacked barplot in percentages and also horizontal.
Component? ? ? Sample 1? ? ? Sample 2? ? ? Sample 3CaO????????????????? ? 45????????????? ? 52????????????? ? 48SiO2????????????????? ?25????????????? ? 22????????????? ? 18Al2O3?????????????????15????????????? ? 11????????????? ? 14TiO2? ? ? ? ? ? ? ? ? ? ?6? ? ? ? ? ? ? ? ? 5? ? ? ? ? ? ? ?
2023 May 03
1
[External] Error in percentage stacked barplot
...? ? ? 5
Cl? ? ? ? ? ? ? ? ? ? ? ? 1? ? ? ? ? ? ? ? ? 3? ? ? ? ? ? ? ? 4"
, header=TRUE, row.names="Component")
likert(t(hellisheidi), ReferenceZero=.5,
? ? ? xlab="X-lab", ylab="Y-lab", main="Stacked bar chart")
> On May 2, 2023, at 15:23, Maria Lathouri via R-help <r-help at r-project.org> wrote:
>
> Dear all,
> I am trying to plot the following table in stacked barplot in percentages and also horizontal.
> Component? ? ? Sample 1? ? ? Sample 2? ? ? Sample 3CaO? ? ? ? ? ? ? ? ? ? 45? ? ? ? ? ? ? ? 52? ? ? ? ? ? ? ? 48SiO2? ? ?...