Displaying 20 results from an estimated 3660 matches for "ln".
Did you mean:
len
2006 Jul 17
1
sem: negative parameter variances
...n problems with Mundlak are increasing number of variables: as well as dimension of a model (additional between equations). So to begin with, I try to estimate pool, which is obviously easier, and proceed as follows:
Consider the following specification:
model.3eq.33 <- specify.model( )
ln.inv.p0.pc -> ln.grp.phvi.pc , beta13 , NA
ln.migr.new -> ln.grp.phvi.pc , beta12 , NA
ln.grp.corr.pc97 -> ln.grp.phvi.p...
2006 Jan 27
4
regular expressions, sub
Hi,
I am trying to use sub, regexpr on expressions like
log(D) ~ log(N)+I(log(N)^2)+log(t)
being a model specification.
The aim is to produce:
"ln D ~ ln N + ln^2 N + ln t"
The variable names N, t may change, the number of terms too.
I succeded only partially, help on regular expressions is hard to
understand for me, examples on my case are rare. The help page on R-help
for grep etc. and "regular expressions"
What I am doi...
2009 Oct 27
2
cox regression extract strata as numeric
Hi there,
I perform a stratified cox and then I need the strata as a numeric array "straft.ln"
ft.ln <- coxph(Surv(times,deaths)~ages+chemos+chemos:f1+chemos:f2+horms+horms:f1+horms:f2+grades+grades:f1+grades:f2+positives+positives:f1+positives:f2+sizes+sizes:f1+sizes:f2+strata(stra),data=ddd)
basehazzft.ln=basehaz(ft.ln,centered=FALSE)
H0ft.ln=c(basehazzft.ln[,1])
timeft.ln=c(base...
2008 Nov 13
3
Wine 1.1.8 and wine GIT(howto cooperate together?)
...6_64 and I had installed wine 1.1.8 from launchpad and i installed Red Alert 3 when i run it found that no cursor in game, so
In order to lay Red Alert 3 with cursos i have compile wine from here
git clone git://repo.or.cz/wine/hacks.git
then i made symlinks
cd hacks
Code:
mkdir -p `pwd`/lib32
ln -s /usr/lib32/libX11.so.6 `pwd`/lib32/libX11.so
ln -s /usr/lib32/libXext.so.6 `pwd`/lib32/libXext.so
ln -s /usr/lib32/libfreetype.so.6 `pwd`/lib32/libfreetype.so
ln -s /usr/lib32/libfontconfig.so.1 `pwd`/lib32/libfontconfig.so
ln -s /usr/lib32/libGL.so.1 `pwd`/lib32/libGL.so
ln -s /usr/lib32/libGLU...
2005 Aug 25
2
Where have all the Gaim icons gone?
Has anyone noticed that in the latest gaim update
(gaim-1.3.1-0.el4.3.i386.rpm) almost all the MSN smiley icons are not
included in the package? I've reverted to gaim-1.3.1-0.el4.i386.rpm and
they're all there. Is this a bug? and if not why would redhat remove the
smiley icons from Gaim?
--
Tim Edwards
2016 Mar 23
2
samba 4.4rcx WINS nsswitch module
cd samba-4.4.0
./configure --prefix=/usr/local/samba --fatal-errors --enable-gnutls
--enable-debug --enable-selftest
make
make install
ln -v -fs /usr/local/samba/lib/security/pam_winbind.so
/lib64/security/pam_winbind.so
ln -v -fs /usr/local/samba/lib/security/pam_smbpass.so
/lib64/security/pam_smbpass.so
ln -v -fs /usr/local/samba/lib/libnss_winbind.so.2 /lib64/
ln -v -fs /lib64/libnss_winbind.so.2 /lib64/libnss_winbind.so
ln -v -fs...
2011 Nov 22
5
x, y for point of intersection
...decreasing = TRUE)
plot(k1, q1, xlim <- c((min(k1)-5), (max(k1)+5)),
type="l")
?
ya <- 2
xa = -5
yb=4
xb=12
?
lines(c(xa, xb), c(ya, yb), col = 2)
?
# I want to get the x and y coordinates of the
intersection of the 2 lines ?.
?
m <- (ya-yb)/(xa-xb)
b <- ya-m*xa
ln <- loess(q1~k1)
lines(ln)
?
It is clear that the x, y will satisfy both linear
equations, y = m*x + b and the ln polyline ?.. but while I can visualize the
equation of the straight line ? I have problems with the polyline. I will appreciate
any ideas to solve this problem. I thought it a triv...
2010 Apr 20
2
log-linear regression question
I am trying to estimate a demand function:
Y=K * X1^b1 * X2^b2 * X3 ^(-1-b1)
in log form:
ln Y = ln K + b1 ln X1 + b2 ln X2 + (-1-b1) ln X3
As the regression coefficients are related for 2 of the regressors, I am not
sure of the appropriate methodology or function in R to handle this. Any
hints?
thx,
Tarun
[[alternative HTML version deleted]]
2004 Feb 26
2
Log user log-offs
Does anyone know of a way to log when a user logs off using Samba as a
PDC. I have Samba 3.0.2a and can log log-ons using root preexec on a
share all users mount, however I do not know of a way to log log-offs.
We need this data for record keeping purposes. We don't use roaming
profiles, so using root postexec is not an option as shares disconnect
when not in use.
Thanks for any help,
2006 Dec 07
1
specifying INBOX with maildir for mail_location
I'd like to store all of my mail in maildir, but I want to store the
inbox and indices on fast storage and everything else on deep storage.
Does the following configuration value for mail_location accomplish this?
mail_location =
maildir:/data/deep/%Ld/mail/%Ln:INBOX=/data/fast/%Ld/mail/%Ln:INDEX=/data/fast/%Ld/indices/%Ln
------------------------------------------------------------------------
If not, does the following configuration accomplish this with namespaces?
mail_location =
maildir:/data/fast/%Ld/mail/%Ln:INDEX=/data/fast/%Ld/indices/%Ln
name...
2008 Jul 21
4
how to speed up this for loop?
Could anyone tell me a better way to achieve the output of this for loop? It
seems to run quite slow. I'm sure there must be a more consise way to sum
from FN to LN, excluding positive values, for each row.
#sum between FN and LN, excluding positive values
for(i in 1:R){
for(j in FN[i]:LN[i]){
if(Temp[i,j]<0)
sum[i] <- sum[i] + sum(Temp[i,j])}}
Cheers,
R
--
View this message in context: http://www.nabble.com/how-to-speed-up-this-for-loop--tp18579577p...
2013 Jul 17
13
[PATCH 0/3] xen: various changes to what we install in /boot
Jan suggested a couple of cleanups based upon my "xen: allow
architecture to choose whether to compress installed xen binary" patch.
So this series now consists of:
xen: allow architecture to choose how/whether to compress installed xen binary
xen: x86: drop the ".gz" suffix when installing
xen: Use $(T) and $(D) aliases in install target
This is based
2014 Oct 24
5
[PATCH 0/2] bash-completion: Install symbolic links instead of copies of files (RHBZ#1156298).
Previously we copied the files instead of the symlinks.
2012 May 18
1
Problem when index is given by a changing formula in loop - BUG??
...h loop output.
I think the problem is the following: I am caluclating the index which
indicates where the loop output should be placed at by a formula. But when I
want to fill in or read out some specific index places this doesn't work
properly. Let me show you my code:
# CODE
################
ln_0 <- 0
ln_max <- 20
ln_schritt <- 0.1
l_frak_0 <- 25
g_l_frak_0 <- 0.5
ln_auslastung <- 2
l_frak <- rep(0, 1+(ln_max-ln_0)/ln_schritt)
ln <- ln_0
while (ln < (ln_max+ln_schritt))
{
insert <- 1+ (ln-ln_0)/ln_schritt
l_frak[insert] <- 100
#l_frak_0 / g_l_frak_0...
2001 Oct 17
3
Again: bugs in contrib/solaris/opensshd.in and buildpkg.sh
...ep with solaris 2.4, XARGS was undefined, simpler
syntax)
J?rg
--- contrib/solaris/buildpkg.sh Fri Oct 12 22:30:53 2001
+++ contrib/solaris/buildpkg.sh Tue Oct 16 13:53:07 2001
@@ -40,9 +40,9 @@
../opensshd.in > $FAKE_ROOT/etc/init.d/opensshd
chmod 711 $FAKE_ROOT/etc/init.d/opensshd
-ln -s $FAKE_ROOT/etc/init.d/opensshd $FAKE_ROOT/etc/rcS.d/K30opensshd
-ln -s $FAKE_ROOT/etc/init.d/opensshd $FAKE_ROOT/etc/rc1.d/K30opensshd
-ln -s $FAKE_ROOT/etc/init.d/opensshd $FAKE_ROOT/etc/rc2.d/S98opensshd
+ln -s /etc/init.d/opensshd $FAKE_ROOT/etc/rcS.d/K30opensshd
+ln -s /etc/init.d/opensshd $...
2009 Jun 24
0
[PATCH] nv50: fix previous patches
...== PIPE_SHADER_VERTEX)
+ if (pc->p->type == PIPE_SHADER_VERTEX && pc->p->cfg.vp.ucp.nr > 0)
nv50vp_ucp_append(pc);
/* collect branching instructions, we need to adjust their target
@@ -2811,14 +2823,26 @@ nv50_linkage_create(struct nv50_context *nv50)
so_ref(so, &ln->so);
so_ref(NULL, &so);
+#ifdef NV50_PROGRAM_DUMP
+ fprintf(stderr, "LINKAGE:\n");
+ for (i = 0; i < n; i++)
+ fprintf(stderr, "MAP[%i] = 0x%08x\n",i,map[i]);
+ fprintf(stderr, "REG1904 = 0x%08x\n",regs[0]);
+ fprintf(stderr, "REG1908 = 0x%08x\n&qu...
2020 Jan 16
1
INDEX= and dovecot.index.log / dovecot.list.index.log
Using 2.3.8 and
mail_location =
maildir:/var/mail/%Ln:CONTROL=/var/lib/dovecot/control/%Ln:VOLATILEDIR=/var/lib/dovecot/control/%Ln:INDEX=/var/lib/dovecot/control/%Ln
+ also
user_query = SELECT ... CONCAT('maildir:/var/mail/', LOWER(u.login),
'/:CONTROL=/var/lib/dovecot/control/%Ln:VOLATILEDIR=/var/lib/dovecot/control/%Ln:INDEX=/var/lib/...
2016 Mar 23
2
samba 4.4rcx WINS nsswitch module
cd /usr/lib64/security
rm pam_smbpass.so
rm pam_winbind.so
rm /lib64/libnss_wins.so*
ln -s /usr/local/samba/lib/libnss_wins.so.2 /lib64/libnss_wins.so.2
ln -s /usr/local/samba/lib/libnss_wins.so.2 /lib64/libnss_wins.so
reboot
# ping google.com
Segmentation fault
2016-03-23 13:39 GMT+02:00 Rowland penny <rpenny at samba.org>:
> On 23/03/16 10:12, barış tombul wrote:
>
>...
2003 Nov 25
1
using pdMAT in the lme function?
Hello. I want to specify a diagonal structure for the covariance matrix
of random effects in the lme() function.
Here is the call before I specify a diagonal structure:
> fit2<-lme(Ln.rgr~I(Ln.nar-log(0.0011)),data=meta.analysis,
+ random=~1+I(Ln.nar-log(0.0011)|STUDY.CODE,na.action=na.omit)
and this works fine. Now, I want to fix the covariance between the
between-groups slopes and intercepts to zero. I try do do this using
the pdDiag command as follows, but it does not...
2005 Aug 20
2
DFS question
...vailable.
Each server has:
Need to add these to samba:
[global]
host msdfs = yes
[teacher]
path = /export/teachers
msdfs root = yes
[student]
path = /export/students
msdfs root = yes
Create these directories and add the links in each like so (shares are
already there):
/export/teachers
ln -s msdfs:bes-serve\\bes elemstudents
ln -s msdfs:bms-serve\\bms midstudents
ln -s msdfs:bhs-serve\\bhs highstudents
ln -s msdfs:bes-serve\\teachpublic teacherspublic
ln -s msdfs:bes-serve\\lemburg lemburger
ln -s msdfs:bes-serve\\school elemteachers
ln -s msdfs:bms-serve\\school midteachers
ln -s m...