Displaying 11 results from an estimated 11 matches for "freudian".
Did you mean:
fredin
2015 Feb 16
2
Imports problem
...fit)". I will
> return nlme to the depends list.
I believe you can import it and then export it from your own package,
though I don't know if this will lead to other problems.
> 2. I depend on the S3 generics of nlme: both of you wrote "lme4" in your response.
> Freudian slip, or was there a reason?
Not for me: I just copied it from Martin's message.
I can include either, as long as it works. The
> reason I don't define the generics myself is that it is quite possible for someone to be
> fitting both linear and Cox mixed effects models, and if...
2004 Sep 10
2
Large compression test
...I thought
I'd post the results. I took about 60 CDs, totalling around
30 gigs uncompressed, and compressed them all using all 10 of
flac's default compression modes (-0 through -9). The CDs are
of a wide variety of music; I think the only major genres not
represented are country and rap (freudian slip). Anyway, the
raw numbers:
Opt Uncompressed Compressed Ratio Encode Time
--- ------------ ----------- ------ -----------
-0 18705533061 30308309960 0.6171 3:49:31
-1 18296233794 30308309960 0.6036 3:56:11
-2 18213733462 30308309960 0.6009 4:1...
2015 Feb 16
0
Imports problem
...tes, etc all tell the users of coxme to type "ranef(fit)" to
get random effects. I do not want to force them to type "nlme::ranef(fit)". I will
return nlme to the depends list.
2. I depend on the S3 generics of nlme: both of you wrote "lme4" in your response.
Freudian slip, or was there a reason? I can include either, as long as it works. The
reason I don't define the generics myself is that it is quite possible for someone to be
fitting both linear and Cox mixed effects models, and if two packages define the generics
de novo then all methods for one of...
2008 Jun 05
7
Improving data processing efficiency
Hi everyone!
I have a question about data processing efficiency.
My data are as follows: I have a data set on quarterly institutional
ownership of equities; some of them have had recent IPOs, some have not
(I have a binary flag set). The total dataset size is 700k+ rows.
My goal is this: For every quarter since issue for each IPO, I need to
find a "matched" firm in the same
2004 Sep 10
0
Large compression test
...results. I took about 60 CDs, totalling around
JC> 30 gigs uncompressed, and compressed them all using all 10 of
JC> flac's default compression modes (-0 through -9). The CDs are
JC> of a wide variety of music; I think the only major genres not
JC> represented are country and rap (freudian slip). Anyway, the
JC> raw numbers:
JC> Opt Uncompressed Compressed Ratio Encode Time
JC> --- ------------ ----------- ------ -----------
JC> -0 18705533061 30308309960 0.6171 3:49:31
JC> -1 18296233794 30308309960 0.6036 3:56:11
JC> -2 1...
2019 Nov 24
3
switch to reference counting in R-devel
Baring any unforeseen issues R-devel will switch in about a week from
the NAMED mechanism to reference counting for determining when objects
can be safely mutated in base C code. This is expected to have minimal
impact on packages not using unsupported coding practices in their C
code.
The transition to reference counting has been in progress for a
number of years. Some older notes on this are
2011 Jul 05
6
CentOS 6 supported hardware
Has anyone seen a supported hardware list on CentOS 6? I've been looking
around for the last few days; even looked at RedHat's site but didn't
find one.
I've got a Dell Inspiron 1501 with a Dell Wireless 1390 WLAN mini-card
in it and I'm trying to find out if it's going to have native driver
support for the WIFI.
thanks,
--
Mark Weaver
Computer Information Systems
2008 Dec 14
19
regarding vpn server for 1500 clients
Hi list,
I have to build vpn server for 1500 clients. No encryption necessary.
can anyone please recommend me vpn server.
I do not have experience on vpn.
I have tested openvpn on my test setup, & its working fine.
I want to check if there any other vpn server available.
I have not checked but can pptp vpn be usefull?
My requirement is to connect 1500 clients on vpn server.
Need
2006 Jul 12
10
Rails: Good for everything?
My department is in a battle right now. We have some very por PHP
people and very pro Rails people. The php guys make a good argument
that Rails is good for new applications where we dictate the DB schema.
PHP shines where we go into an existing application, or a new one where
multiple databases or possibly legacy systems are involved. The PHP
guys basically say Rails is good for Web 2.0
2006 Aug 20
14
http parser
Just thought I''d let you know that your http parser worked great for
creating an http protocol handler for Eventmachine. It wouldn''t take
that much effort to use Eventmachine for Mongrel, might be worth a
shot just to see how it does. A few things would need to be
restructered, like HttpRequest where you read the rest of the body,
and calling the handler. But it
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame.
For instance
> ddTable <-
data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry"))
I want a dataset that is
Id Name
1 Paul
2 Bob
> unique(ddTable)
Will give me all 4 rows, and
> unique(ddTable$Id)
Will give me c(1,2), but not accompanied by the name column.