search for: trans3

Displaying 5 results from an estimated 5 matches for "trans3".

Did you mean: trans
2010 Dec 20
2
package "arules" - 'transpose' of the transactions
Suppose this is my list of transactions: set.seed(200) tran=random.transactions(100,3) inspect(tran) items transactionID 1 {item80} trans1 2 {item8, item20} trans2 3 {item28} trans3 I want to get the 'transpose' of the data, i.e. transactionID items 1 {trans2} item8 2 {trans2} item20 3 {trans3} item28 4 {trans1} item80 I tried converting tran into a matrix, then transpose it, then convert it back to transactions. But my dataset is ac...
2012 Oct 23
2
plotting multiple variables in 1 bar graph
...coral, sand, etc.) over 5 transects in each site site time transect coral deadcoral sand rubble ..... S1 time1 trans1 10 15 10 4 S1 time1 trans2 5 4 10 6 S1 time1 trans3 10 2 5 7 . . . S5 time5 trans5 6 3 1 6 I used aggregate to get the means of the individual variables (coral, dead coral, etc.) using the site and time as grouping factors. aggregate.plot(deadc...
2010 Dec 20
1
transposing panel data
...9; of the transactions To: r-help@r-project.org Date: Monday, December 20, 2010, 8:41 AM Suppose this is my list of transactions: set.seed(200) tran=random.transactions(100,3) inspect(tran)   items    transactionID 1 {item80}        trans1 2 {item8,    item20}        trans2 3 {item28}        trans3 I want to get the 'transpose' of the data, i.e.   transactionID  items 1 {trans2}        item8 2 {trans2}        item20 3 {trans3}        item28 4 {trans1}        item80 I tried converting tran into a matrix, then transpose it, then convert it back to transactions. But my dataset is ac...
2018 Oct 09
3
immediate delete of mails
On Tue, 9 Oct 2018 11:09:53 +0300 Reio Remma <reio at mrstuudio.ee> wrote: > Do you see anything in Dovecot logs? It should definitely log if there > were permission issues. With 'mail_debug=yes' I see nothing relevant. Just something like this when I want to expunge deleted mails: Oct 09 10:40:01 imap(tselmeci)<15816><ZwHSosd3NL/AqAFm>: Debug: Mailbox INBOX:
2010 Dec 19
3
monthly median in a daily dataset
Hello, I have a multi-year dataset (see below) with date, a data value and a flag for the data value. I want to find the monthly median for each month in this dataset and then plot it. If anyone has suggestions they would be greatly apperciated. It should be noted that there are some dates with no values and they should be removed. Thanks Emily > print ( str(data$flow$daily) )