Displaying 20 results from an estimated 108117 matches for "twoing".
Did you mean:
towing
2003 Nov 28
2
GLM FITTED VALUES TABLE
Hi all
I have the following generalized linear problem.
In a study of allergic responses, patients arriving at a clinic in
Groote Schuur hospital were tested for sensitivity to a number of
substances. Three of these were moulds: Cladosporium (C), Alternaria
(F) and Aspergillius (T). Their level of sensitivity was measured on
the Rast Scale as: 0: not allergic 1: mildly
2017 Nov 26
0
dplyr - add/expand rows
To David W.'s point about lack of a suitable reprex ("reproducible
example"), Bill's solution seems to be for only one station.
Here is a reprex and modification that I think does what was requested for
multiple stations, again using base R and data frames, not dplyr and
tibbles.
First the reprex with **two** stations:
> d <- data.frame( station =
2017 Nov 26
3
dplyr - add/expand rows
dplyr may have something for this, but in base R I think the following does
what you want. I've shortened the name of your data set to 'd'.
i <- rep(seq_len(nrow(d)), d$YEAR_TO-d$YEAR_FROM+1)
j <- sequence(d$YEAR_TO-d$YEAR_FROM+1)
transform(d[i,], YEAR=YEAR_FROM+j-1, YEAR_FROM=NULL, YEAR_TO=NULL)
Bill Dunlap
TIBCO Software
wdunlap tibco.com
On Sat, Nov 25, 2017 at 11:18 AM,
2017 Nov 28
1
dplyr - add/expand rows
Bert wrote
... Bill's solution seems to be for only one station.
No, it works for any number of stations.
Bill Dunlap
TIBCO Software
wdunlap tibco.com
On Sun, Nov 26, 2017 at 11:10 AM, Bert Gunter <bgunter.4567 at gmail.com>
wrote:
> To David W.'s point about lack of a suitable reprex ("reproducible
> example"), Bill's solution seems to be for only one
2004 Jun 09
1
Samba client filesize problems
Filesize problems with samba client on Redhat 9 and W2k machine.
The original smbclient did this so I upgraded to the latest, it didn't
help. The server is W2k with an NTFS volume, these are video files - the
windows software breaks the files at the 2G limit, but for some
reason some are reported as 2G others as huge !!
One day I might own 25T of disk, but not today.
Anyone any ideas ?
2017 Nov 27
2
dplyr - add/expand rows
try this:
##########################################
library(dplyr)
input <- tribble(
~station, ~from, ~to, ~record,
"07EA001" , 1960 , 1960 , "QMS",
"07EA001" , 1961 , 1970 , "QMC",
"07EA001" , 1971 , 1971 , "QMM",
"07EA001" , 1972 , 1976 , "QMC",
"07EA001" , 1977 ,
2006 Nov 06
5
alist()
In trying to get NULL members into a list, I found out about alist().
x<-alist()
x$one<-1
x$two<-NULL
but x$two doesn't exist.
It seems, though, that an alist is just a list.
How can one put NULL members into a list?
2012 Jul 04
2
Difference between two-way ANOVA and (two-way) ANCOVA
Hi!
as my subject says I am struggling with the different of a two-way ANOVA and
a (two-way) ANCOVA.
I found the following examples from this webpage:
http://www.statmethods.net/stats/anova.html
# One Way Anova (Completely Randomized Design)
fit <- aov(y ~ A, data=mydataframe)
# Randomized Block Design (B is the blocking factor)
fit <- aov(y ~ A + B, data=mydataframe)
# Two Way
2006 Nov 06
2
Two uplinks, two networks and policy routing help requested
I am hoping that someone with more experience and knowledge than I can
assist me in finding a solution ;)
We have a RedHat AS4 box with 5 interfaces. Two interfaces serve two
different networks and two interfaces connect to two different uplinks.
The fifth interface is our management interface.
Since a picture is worth a thousand words I attempted to come up with a
diagram:
2017 Nov 28
0
dplyr - add/expand rows
On 11/26/2017 08:42 PM, jim holtman wrote:
> try this:
>
> ##########################################
>
> library(dplyr)
>
> input <- tribble(
> ~station, ~from, ~to, ~record,
> "07EA001" , 1960 , 1960 , "QMS",
> "07EA001" , 1961 , 1970 , "QMC",
> "07EA001" , 1971 , 1971 ,
2009 Apr 14
2
matching lists
Dear All,
Here's my problem. I have two lists:
> v
[[1]]
[1] "five"
[[2]]
[1] "four"
[[3]]
[1] "three"
[[4]]
[1] "two"
[[5]]
[1] "one"
[[6]]
[1] "six"
[[7]]
[1] "five" "four" "three" "two" "one" "six"
[[8]]
[1] "four" "three"
2002 Jul 03
2
Occasional problem with hanging SMB mounts.
Hello everyone.
I have two linux servers* that each have four directories mounted as
SMBFS shares from a Windows 2000 Server. For the most part, this set-up
is working great, however, there have been occasional hiccups.
Every so often, one of the servers, LINUX-ONE, logs a couple of
Samba-related errors. The following is an example:
Jun 30 06:30:45 mx-two kernel: smb_trans2_request:
2018 Mar 13
2
Passes interaction running on two different IRs
Hi all,
I am trying to run two llvm passes on two different IRs to finish my
analysis. These two passes need to exchange information during their
excecution. I am doing so because I can't link the two IRs I want to
analyze together as a big IR and run my llvm pass on it.
What I want to do specifically is:
The first IR will call the functions in the second IR. Whenver there is a
function
2017 Nov 28
2
dplyr - add/expand rows
Or with the Bioconductor IRanges package:
df <- with(input, DataFrame(station, year=IRanges(from, to), record))
expand(df, "year")
DataFrame with 24 rows and 3 columns
station year record
<character> <integer> <character>
1 07EA001 1960 QMS
2 07EA001 1961 QMC
3 07EA001 1962 QMC
4
2013 Aug 20
2
Two external interfaces, one with "default" route and ping problem
Hi
I have two different IP addresses (in a block of /29), one is on port 0 and the other is on port 2 of a Ciso 888.
I am doing this so I can have two different certs with two different ip addresses.
I have tried:
1) one machine, two real interfaces, two cables (eth0 and eth2)
2) one machine, one real interface eth0 and one virtual interface eth0:1, one network cable
Using number 2)
I can
2008 Mar 11
7
sortable scroll in div problem : dragged element doesn't follow the mouse pointer
Hello,
I''m facing a strange problem with a long list of Sortable items in a
container that has an overflow:auto.
If I drag an item from the top to the bottom, the container div is
scrolling, but there is a difference between the position of the
dragged element and the mouse pointer.
An example is better that a thousand words.
Try to drag the first item at the bottom of the
2006 Dec 14
4
two connected graphs
Hi
I have two datasets, A and B, consisting of two columns of numbers
representing x and y coordinates.
They have 10 and 6 rows respectively.
I want to plot two scattergraphs, one above the other.
The lower graph to contain A (10 points) and the upper
graph to contain B (six points).
The x-axes of the two graphs must line up.
I then want to draw straight lines that connect points
of B to a
2013 Mar 29
1
Make a matrix from two lists
I am trying to write a function that makes a matrix out of two lists. As you will see run running the function below, the result is NOT a matrix but rather a list. Can anyone tell me what I am doing wrong?
Thanks,
John
test <- function(one,two) {
cat("List One=",one,"\n")
cat("List Two=",two,"\n")
cat("Should be a matrix, but is
2010 Nov 18
2
Two Windows users with two passwords must map to the same unix user
Hello,
I have no idea how to implement the following scenario apart
from running two instances of samba on the same machine...
I need a setup where two different Windows users will authen-
ticate with two different passwords but get mapped to the same
unix user.
That is
JOE got password PASS1 and maps to unix user joe with uid 1000
and
JACK got password PASS2 and maps to unix user joe with
2006 Feb 08
3
Two Lines, Two Businesses
After tinkering with a hand-knitted extensions.conf based on "Asterisk -
TFOT", I've now set up a server with Asterisk@Home and am experimenting
with it. I'd appreciated any advice from the more experienced list members
about which way to proceed.
We (my wife and I) have two separate micro-businesses with two POTS lines
plus fax. I'd like to have inbound calls on the two