Displaying 20 results from an estimated 1000 matches similar to: "Ignorant lack of bliss : summarise table by column attribute"
1997 Feb 04
0
In regards to the Linux ''Bliss'' Virus.
While I realize that the bliss virus looks more like a research project
than a malicious virus, the reality is that it is out there. Because
I was concerned that some programs on my linux systems might have become
infected, I wrote a tool to determine which programs, if any, had
been infected by the bliss virus. For those who lack md5 checksums
of all their binaries, this is likely to be a
2007 Sep 12
0
New package: hbim - Hill/Bliss Independence Model for Multicomponent Vaccines
Hi all,
I have just uploaded the hbim package. This package does calculations related to the Hill/Bliss independence model as applied to mulitcomponent vaccines. Specifically, the package caculates expected relative risk and proportion protected assuming normally distributed log10 transformed antibody dose for a several component vaccine. It uses Hill models for each component which are combined
2007 Sep 12
0
New package: hbim - Hill/Bliss Independence Model for Multicomponent Vaccines
Hi all,
I have just uploaded the hbim package. This package does calculations related to the Hill/Bliss independence model as applied to mulitcomponent vaccines. Specifically, the package caculates expected relative risk and proportion protected assuming normally distributed log10 transformed antibody dose for a several component vaccine. It uses Hill models for each component which are combined
1997 Feb 05
0
bliss version 0.4.0
[mod: Forwarded by Jeff Uphoff. I tried to mangle the headers that
it appears as the original post: with an invalid return address. -- REW]
A few months back, a very alpha version of bliss got posted. That shouldn''t
have happened, but, it was pretty much ignored so I didn''t worry about it.
But now it seems there''s a bit of a fuss about this. I''ll post the
2009 Mar 15
0
How to summarise several models in a single table
Dear R-helpers,
I have produced several models, named model1, model2, model3, etc...
I would like to extract several elements from each model's object, e.g. at
minimum the estimates, SEs, and P values of each model's intercept and
slopes, model R-squared, and AIC...
...and then produce a new object (a table) that summarises all of my models,
with M\models in rows and extractd model
2013 Jan 22
2
summarise subsets of a vector
Hello,
I have vector called test. And now I wish to measure the mean of the first
10 number, the second 10 numbers etc
How does it work?
Thanks Wim
> dput (test)
c(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0.71, 0.21875, 0,
2017 Sep 09
0
Avoid duplication in dplyr::summarise
Hi Lars
I am not very sure what you really want. However, I am suggesting the
following code that enables (1) to obtain the full summary of your data and
(2) retrieve only mean of X values as function of factors f1 and f2.
library(tidyverse)
library(psych)
df <- data.frame(matrix(rnorm(40), 10, 4),
f1 = gl(3, 10, labels = letters[1:3]),
f2 = gl(3, 10, labels
2017 Sep 09
2
Avoid duplication in dplyr::summarise
Dear group,
Is there a way I could avoid the sort of duplication illustrated below?
i.e., I have the same dplyr::summarise function on different group_by
arguments. So I'd like to create a single summarise function that could be
applied to both. My attempt below fails.
df <- data.frame(matrix(rnorm(40), 10, 4),
f1 = gl(3, 10, labels = letters[1:3]),
f2 =
2017 Sep 09
1
Avoid duplication in dplyr::summarise
Hi Lars,
Two comments:
1. You can achieve what you want with a slight modification of your
definition of s(), using the hint from the error message that you need an
argument '.':
s <- function(.) {
dplyr::summarise(., x1m = mean(X1),
x2m = mean(X2),
x3m = mean(X3),
x4m = mean(X4))
}
2. You have not given a great test case in
2001 Oct 31
3
readonly - can't change
well i've tried everything trying to get r/w access to my linux box
(debian 2.2.3 running samba 2.0.7) from win2k. can only get readonly.
i'm hoping some kind sould might be able to take a look at my samba
config and let me know what i'm doing wrong...
# Samba config file created using SWAT
# from localhost (127.0.0.1)
# Date: 2001/11/01 00:39:30
# Global parameters
[global]
2007 Aug 07
3
ISDN30 card for UK : sanity check
We will be connecting our Asterisk server to ISDN 30 and intend using
the Sangoma A101 card. The install location is in London (UK).
Sangoma card at Voipon
http://www.voipon.co.uk/sangoma-a101-pri-isdn-card-p-132.html?gclid=CI32vJz22I0CFQXklAodIgjHaA
I would be grateful to hear if this is the right choice of card. Usage
reports would be helpful.
Regards
Rory
--
Rory Campbell-Lange
2004 Apr 07
2
Help with character columns in a table
I have done a read.table on a data file with the aim of extracting
subsets of the data eg
table[table$desc = 'result1',]
How can I convert $desc to a character type? At present it is seen by
typeof() as an integer.
How can I do the equivalent of
table[table$desc = 'result1' && table$amt > 20, ]
Thanks,
Rory
--
Rory Campbell-Lange
<rory at
2008 Nov 24
4
Calculating sum of letter values
Hi all
If I have a string, say "ABCDA", and I want to convert this to the sum of the letter values, e.g.
A -> 1
B -> 2
etc, so "ABCDA" = 1+2+3+4+1 = 11
Is there an elegant way to do this? Trying something like
which(LETTERS %in% unlist(strsplit("ABCDA", "")))
is not quite correct, as it does not count repeated characters. I guess what I need is
2004 Dec 14
1
IMAP Subdirectories
Hi
Using Apple Mail I cannot make subdirectories within new directories I have
made on a Debian Dovecot-driven IMAP server (version 0.99.11-3).
Some users, having used Exchange, expect to be able to do this. However
I can't make it happen, even after doing some tests by chmod-ing the
top-level directories to 777 and enabling the
mail_full_filesystem_access = yes
option on a test
2005 Sep 19
1
Shared access to mail accounts.
We are intending to have some project mail accounts which many people
(up to 10) will share. Will this work?
Our configuration uses imap only, with maildir format mail storage.
Thanks
Rory
--
Rory Campbell-Lange
<rory at campbell-lange.net>
<www.campbell-lange.net>
2008 Nov 25
3
Line color based on data values?
Hi all
Does anyone know if it is possible when plotting a line or scatter plot, to selectively color the data points based on the data value? i.e. if plotting say the percentage change in stock price movements, to color +ve points in green and -ve points in red? And extending this to a user-defined range of colors based on the quartile of the data points?
Thanks
Rory
Rory Winston
RBS Global
2007 Aug 04
1
Hardware advice for 100 extensions, routing via ISDN
I would be grateful for some comments on our proposed machine specs for
a new Asterisk installation at a client with an initial 70 extensions.
The system should be able to handle 100 extensions. The system will have
the following main features:
- PSTN connection via ISDN 30, dealing with all incoming calls.
Outgoing will be through ISDN initially
- 70-100 Snom 300 handsets
- 1-2
2004 Jul 20
2
Newbie question: configuration for virtual users
Hi!
I'm looking forward to deploying dovecot as an IMAP server. I did some
research into the various options and it looks like dovecot is the right
daemon for me. I'll be using it with Exim.
I am running a few tens of users on my server, most of them small
numbers of people part of a small company, e.g. example.com.
At present I have exim delivering to mbox in each virtual user's
2008 Apr 04
4
Arbitrary Precision Numbers
Hi
(If you're wondering, this is a Project Euler question :))
If I wanted to calculate the sum of the digits in the decimal representation
of 2^1000, what would be a good way to go about that? I've tried the
following methods:
# Calculate the sum of digits in the decimal representation of 2^n
# Only works for smaller values of n
bsum <- function(n) {
s <- 0
e <-
2012 Jan 17
1
Error with winbind following Windows updates
Hi. We've just installed Windows updates on our Windows 2003 Domain
Controllers, and have the following issues on our storage server, which
is running Debian stable 2:3.5.6~dfsg-3squeeze5
Jan 17 10:27:51 xxx smbd[2426]: [2012/01/17 10:27:51.286853, 0] lib/util_sock.c:680(write_data)
Jan 17 10:27:51 xxx smbd[2426]: [2012/01/17 10:27:51.286915, 0]