similar to: Group a dinamic number of vectors in a data.frame

Displaying 20 results from an estimated 2000 matches similar to: "Group a dinamic number of vectors in a data.frame"

2004 Jul 01
3
BIC vz SBIC vz SIC
DeaRs, I have a doubt about: BIC (Bayesian Information Criterion) SBIC (Schwartz Bayesian Informarion Criterion) SIC (Schwartz Information Criterion) In many references these are know as the same (eg. stepAIC() function) but I just found a SAS8.2 output that show either the BIC and SIC values for a logistic regression.. simillary values but different. 1) question: What are the differences?
2004 Dec 02
2
Text Mining with R
Dears, anyone has experiences with text mining and R? I'll be very greatfull for tutorial or examples. Thanks -- Daniele Medri - http://www.medri.org
2006 Jul 14
1
party - ctree() - terminal nodes reference for every obs
Dear R.Users, using ctree() (from "party" library) on a data.frame, I want to append a column with the references for the groups/segments detected. While these nodes are easy readable in output, I need a vector for my obs. Hints? Cheers -- Daniele Medri
2006 Feb 07
3
Dinamic controller
Is it possible to make a Rails app respond to a "dinamic" controller? As I understand method_missing can be used inside a controller to respond to nonexisting methods, is it possible to provide a similar behavior at a controller level? I am not sure at whic level would this code be inserted... -- An?bal Rojas http://www.lacaraoscura.com/ anibalrojas@gmail.com
2003 Jul 03
1
AID and CHAID: news about?
Dear R-helpers, I just search if is there something for AID and CHAID in R: one message in this list (last year) without success and no possibility. News about? If "no" let's me know because some friends are looking for thesis and this could be a usefull job. bye -- Daniele Medri
2003 Jun 17
0
ipfw2 docs for dinamic rules
Dear FreeBSD! I would like to use custom rules file with ipfw2. My computer goes to the net via dial-up modem and kernel ppp type. Since I don't have experience with dinamic rules, but want to, reading tutorials stranded me somewhere in the middle. In this moment I need recall of known links to docs about topic. Provider gives new address every time when connected. One machine. Via ppp...
2010 Jul 15
1
Dinamic 'mail_location' for each user
Hello, I have a lot of domains in a mail server, so I make a balanced allocation of mailboxes in the storage disks. That improves performance of access to records. Therefore, I want to overwrite 'mail_location' directive for each user. But I also want to use the modifier 'H' to spray the mailboxes of the same partition in a hash. Then, each user has your own
2010 Jul 02
3
Install Windows in a partition of the HD using Wine
Hi everybody! First at all, sorry for my bad english [Rolling Eyes] My problem is: How to install Windows running it from the cd using Wine. I know that it's ten thousand time easier to reboot my pc and install windows as usual but now it's a challenge for me and I hope you can help me :D I archieve to run the I386/winnt32.exe whit root permission and let him recognize the drive
2002 Oct 24
5
NETWORK ROUTES
Hi all, I have a debian server with 4 network cards: The first card is used to connect to public network and this network connects with a big router. The Second, third and fourth cards are used by other networks. The first card used a dinamic route with the big router. The other cards used a static route with a little router. All runs good but my problem is when I try to use the IP of my first
2018 May 08
0
Dinamic variables in loop
Dear Laura, It looks like you want to remove all rows for which each column is NA. You can to that with the code below. na.matrix <- is.na(MyData) all.na.row <- apply(na.matrix, 1, all) MyData[!all.na.row, ] Best regards, ir. Thierry Onkelinx Statisticus / Statistician Vlaamse Overheid / Government of Flanders INSTITUUT VOOR NATUUR- EN BOSONDERZOEK / RESEARCH INSTITUTE FOR NATURE AND
2005 May 23
1
Best configure options for Data Mining
Dears, I am selecting configure-options for Data Mining applications with R, notes that guide a user from SVN repository to system compilation on GNU/Linux system ("gcc" as compiler). Status: * My system specs: - processor Intel 2.8Ghz HT - kernel Linux 2.6.10-5-686-smp - ram 1500 Mbyte * Dataset to use: - ~900 Mbyte of text file * R from svn repository (daily updated) *
2018 May 08
2
Dinamic variables in loop
Hello, I am a newbie in R and I have a problem. I want this line: newMyData <-MyData[!(is.na(col1)) | !(is.na(col2)) | !(is.na(col3)) | !( is.na(col4)) | !(is.na(col5)),] write in for loop. The number of col[number] may be different from 3 to 8 Is there any ideas? Thank you Laura [[alternative HTML version deleted]]
2009 Oct 30
2
Real replacement for AgentCallBackLogin() on Asterisk 1.6
Hi all, I would like to know if there is any application replacement for the AgentCallBackLogin() from asterisk 1.4 on asterisk 1.6. I know, from what I've read that the call back login agent can be done using a smart dialplan as showed on the docs. But I cannot thinks a flexible dialplan for a dinamic reassignation of agents to different queues every day. Thanks in advance. Mariano
2023 Mar 13
1
Adding support for S7 to base R
I don't know if this is the right forum, but I'd like to ask an open-ended question about the goals of the S7 OOP system, which is, where do we see the ultimate future of object-oriented programming in R being? Do we see S7 eventually complementing S3 and S4 in "base" (in quotes because S4 is provided by the methods package), or do we see (or even wish?) for S7 to supplant both
2017 Jun 06
2
Plot MArginal distribution in the correct place
Hi all, I have this code, but the marginal distribution plot doesn?t appear aligned with the left plot. I think could be something about layout or par() mar. The code was programmed by me time ago. Can anyone help me to get the marginal distribution on the center (more higher centered) id.txt Could have this code: 05/01/2016;9335,200195 06/01/2016;9197,400391 07/01/2016;9059,299805
2006 Jun 15
1
username/auth name mismatch
Hi, I have a asterisk/voip newbie and I am sorry if my quetion is banal. I used in my private LAN, Express Talk on Windows XP and Asterisk latest version on Fedora Core 4 , with this configuration in Express Talk Lines menu: Setting for Line: Default Line Settings Full 'friendly' Display Name: port SIP Numeber: 200 Server: 10.0.0.112 Password: mypassword In menu Network: Local SIP Port
2010 Jan 07
1
"diag", "diag<-" and "[" , "[<-"
Dear all I have the following problem. M <- matrix(0,3,3) # dimension of M is dinamic and this can lead to the next subscript diag(M[1,1]) <- rep(100,1) #Error in `diag<-`(`*tmp*`, value = 100) : # only matrix diagonals can be replaced diag(M[1,1,drop=F]) <- rep(100,1) #Error in diag(M[1, 1, drop = F]) <- rep(100, 1) : # incorrect number of subscripts diag(M[2:3,1:2]) <-
2006 Jul 18
2
how can I delete rows?
Hello, I am very new in R so I am so sorry for this question. I have the Barro-Lee data set which contains 98 countries and I want to run the regressions only for the Latin America countries, so what do you recomend? How can I delete all the other countries or how can I select the countries of Lat. Am. thank you this is the list of countries SHCODE COUNTRY NAME WBCTRY
2013 Mar 17
1
zero line
Hi all, I´m plotting cf (with two axis) and addind a shaded color up and down on the 0 line x axis (tfr1 is the time). The thing is that when I plot this graph adds a line up on the "first" plot. I hope you can understand what I mean. How should I erase this sencond line, it is suposed they have the same data? Why zero line doesn´t complete the shaded area?
2013 May 02
5
[PATCH 0/3] vhost-scsi: file renames
This reorgs the files a bit, renaming tcm_vhost to vhost_scsi as that's how userspace refers to it. While at it, cleanup some leftovers from when it was a staging driver. Signed-off-by: Michael S. Tsirkin <mst at redhat.com> Michael S. Tsirkin (3): vhost: src file renames tcm_vhost: header split up vhost_scsi: module rename drivers/vhost/Kconfig | 10 ++-