Displaying 20 results from an estimated 200 matches similar to: "find unique and summerize"
2018 Feb 03
2
find unique and summerize
Thank you so much Rui.
1. How do I export this table to excel file?
I used this
tbl1 <- table(Country, IDNum)
tbl2=addmargins(tbl1)
write.xlsx(tbl2,"tt1.xlsx"),sheetName="summary", row.names=FALSE)
The above did not give me that table.
2. I want select those unique Ids that do have records in all countries.
From the above data set, this ID
2018 Feb 03
0
find unique and summerize
Hello,
Thanks for the reproducible example.
See if the following does what you want.
IDNum <- sub("^(\\d+).*", "\\1", mydata$ID)
Country <- sub("^\\d+(.*)", "\\1", mydata$ID)
tbl1 <- table(Country, IDNum)
addmargins(tbl1)
tbl2 <- xtabs(Y ~ Country + IDNum, mydata)
addmargins(tbl2)
Hope this helps,
Rui Barradas
On 2/3/2018 3:00 AM, Val
2018 Feb 05
0
find unique and summerize
Thank you so much Rui!
On Sun, Feb 4, 2018 at 12:20 AM, Rui Barradas <ruipbarradas at sapo.pt> wrote:
> Hello,
>
> Please always cc the list.
>
> As for the question, I believe the following does it.
>
> a <- strsplit(mydata$ID, "[[:alpha:]]+")
> b <- strsplit(mydata$ID, "[[:digit:]]+")
>
> a <- sapply(a, `[`, 1)
> c <-
2012 May 31
1
svychisq??
Hello forum,
I
want to do a test of independence
with svychisq, but I
get an error, then this my code:
am18 <- read.spss("C:/Users/diana/Dropbox/Semestre
10/Tesis 10/Tesis Diana/AMcomuna18-29MAR2012.sav",
use.value.labels=TRUE, max.value.labels=Inf,
to.data.frame=TRUE)
b<-matrix(c(am18$N6_MANZANA),ncol=1)
c<-matrix(c(am18$PM1_1_PONDEMUESTRA),ncol=1)
2015 Apr 09
2
samba member logon.. question.
Greetings, Rowland Penny!
>>>>> Ok, good.
>>>>> Now, how can I get RFC2307 attributes populated automatically upon
>>>>> users or
>>>>> groups creation?
>>>> You can't :-(
>>>> I'm experimenting with
>>>> https://github.com/laotse/SambaPosix
>>>> but it's quite buggy (at least
2015 Apr 09
3
samba member logon.. question.
El 09/04/15 a les 16:20, Rowland Penny ha escrit:
> On 09/04/15 14:58, Luca Olivetti wrote:
>> El 09/04/15 a les 14:57, Andrey Repin ha escrit:
>>>> Using the RFC2307 attributes, you will get the same ID number on every
>>>> Unix machine, whereas if you use the 'rid' backend, whilst you should
>>>> get the same ID on each Unix machine, you will
2009 Dec 09
1
reshape() makes R run out of memory (PR#14121)
Full_Name: Alexander L. Belikoff
Version: 2.8.1
OS: Ubuntu 9.04 (x86_64)
Submission from: (NULL) (67.244.71.200)
I'm trying to reshape the following data frame:
ID DATE1 DATE2 VALUE_TYPE VALUE
'abcd1233' 2009-11-12 2009-12-23 'TYPE1' 123.45
...
VALUE_TYPE is a string and is a factor with only 2 values
2015 Apr 09
3
samba member logon.. question.
Greetings, Rowland Penny!
>>> You are using python, which to me is a very big snake, so I bash it :-D
>>> I just use these two functions in a bash script:
>>> # Finds the next useable user uidNumber or group gidNumber
>>> # Input : $1
>>> # $1 : msSFU30MaxUidNumber or msSFU30MaxGidNumber
>>> # Output : the first free uidNumber or gidNumber
2009 Jul 28
4
How to do poisson distribution test like this?
Dear R-listers,
I want to reperfrom a poisson distribution test that presented in a
recent-published biological research paper (Plant Physiology 2008, vol 148,
pp. 1189-1200). That test is about the occurrence number of a kind of gene
in separate chromosomes.
For instance:
The observed gene number in chromosome A is 36.
The expected gene number in chromosome A is 30.
Then, the authors got a
2013 Apr 06
2
manipulating R contingency tables
Hi Guys
I am back with another thing that's puzzling me.
I am creating contingency tables but then I want to filter out certain
columns and also find if any entry in the table is 0.
Example:
gts
labels A1 B2 G3
1 21 127 120
2 23 112 0
Here I want to remove B2 column from this table and also if any entry is 0
in this case G3 second row.
Missing out on how to do
2010 Aug 29
1
Finding functions of large dataset for numerical integration
Hello everyone,
I have been trying to figure out away to integrate under a spline produced
by the package tps(fields). As the package does not output functions I am
trying to do something similar to the trapezium rule. My data are 3D (x, y &
z). I have extracted from the surface output by Tps the values of z at
regular intervals so that I have a grid of figures, for example:
1 4 6 6 8
8
2012 Aug 31
2
test Breslow-Day for svytable??
Hi all,
I want to know how to perform the test Breslow-Day test for homogeneity of
odds ratios (OR) stratified for svytable. This test is obtained with the following code:
epi.2by2 (dat = daty, method = "case.control" conf.level = 0.95,
units = 100, homogeneity = "breslow.day", verbose = TRUE)
where "daty" is the object type table svytable consider it, but
2005 Nov 15
9
Multiple Login scripts
Hi all,
Just a quick question about login scripts for a large number of users who
change rooms a lot.
I have several rooms each with a printer, and nearly a thousand users divided
into two main groups - pupils and teachers who change rooms on a routine
basis. Is it possible to set up multiple login scripts that would be executed
in sequence i.e. run by user is %u, and machine is %m is it
2010 Aug 04
2
discrete ECDF
Dear list;
I just created a utility function that replicates what I have done in
the past with Excel or OO.org by putting a formula of the form
=sum($A1:A$1) in an upper-corner of a section and then doing a "fill"
procedure by dragging the lower-rt corner down and to the right. When
divided by the grand sum of the entries this function then calculates
a 2D-discrete-ECDF.
I
2008 Dec 01
1
How to make a banner table.
I have a dataframe with the following variables:
idnum area gender race etc.
I would like to make a table that looks like
area gender race
M F B W A
1 4 5 3 5 1
2 6 7 4 6 3
etc.
Basically, I want to make a single broad table with a number of sub-set
tables. I have tried:
cbind(table(area, gender), table(area, race))
But, when I do this, I lose the labels gender / race. This makes it
2005 May 28
1
cmd curl crashes asterisk:
I recently began using the curl cmd to do an external callerid
lookup on my own customer database. I've noticed certain lookups will cause
a crash and not show anything in the messages file or the console. The curl
command is connecting to an external webserver which has a oracle db
connection. The file its hitting is PHP and does a very simply lookup
showing the text like "C1234 Bobs
2010 Feb 21
1
odfWeave - merged table cells, and adding information like totals and p-values
I'm hoping I'm missing some (probably fundamental basic process) which might make my life easier!
Lets assume I have a 3 column table summarizing results from a trial from three arms (Arm A, B and C).
For each arm there will be a number of pieces of information to report. The simplest example might be to compare this to the demographic comparisons often seen in clinical traisl where you
2001 Jun 06
1
ppr, number of terms, and data ordering
Dear R listers --
I have several questions about using the ppr command in the modreg module.
I discovered -- quite by accident -- that if I re-order the data, I obtain different
results. The output below shows what I mean. I have two datasets (dataset1 and dataset2)
that are identical (tested using proc compare in SAS) except for the fact that the records
are in different order. Below I have
2004 Mar 26
4
multicolumn sort on dataframe?
I couldn't find any reference to this in the FAQ, but is it possible to sort
a dataframe by multiple columns?
I've created some code, similar to the following:
nspr.code <- sp.results$sp.code[order( sp.results$sp.code )]
nspr.tpa <- sp.results$tpa[order( sp.results$sp.code )]
nspr.code <- as.character( levels( nspr.code ) )[nspr.code]
nspr.tpa <- as.numeric( levels( nspr.tpa
2015 Apr 09
0
samba member logon.. question.
On 09/04/15 15:32, Luca Olivetti wrote:
> El 09/04/15 a les 16:20, Rowland Penny ha escrit:
>> On 09/04/15 14:58, Luca Olivetti wrote:
>>> El 09/04/15 a les 14:57, Andrey Repin ha escrit:
>>>>> Using the RFC2307 attributes, you will get the same ID number on every
>>>>> Unix machine, whereas if you use the 'rid' backend, whilst you should