similar to: Help with table

Displaying 20 results from an estimated 30000 matches similar to: "Help with table"

2013 Dec 04
0
[LLVMdev] [lldb-dev] LLVM Bay-Area Dev Meeting!
Dang - I'm gonna have to miss it! My oldest son has a music concert that night :-/ Have fun, all! On Tue, Dec 3, 2013 at 7:03 PM, Nick Lewycky <nlewycky at google.com> wrote: > All things LLVM are welcome at LLVM bay-area social, happening this > Thursday at Tied House in Mountain View starting at 7pm. Those details are > repeated on the website,
2018 Dec 06
1
Dealing with .git folder when using R CMD INSTALL
On 6 December 2018 at 15:59, Ralf Stubner wrote: | On 06.12.18 15:19, Joris Meys wrote: | > I know this R CMD build ignores these files and folders by default, but R | > CMD INSTALL doesn't apparently. | | to me this is not apparent. I just tried "R CMD INSTALL ." in a package | directory with a .git directory. This went without any problems. What do | you observe? Seconded.
2004 Jan 14
0
Precedence of iptables chain, local routing table and newly created routing table
Hi, I been trying on ip rule fwmark and iptables MARK. I will show my testing in detail, but my ultimate question is why ONLY marking in Mangle OUTPUT tables works, but not others? Network Diagram ------------ 192.168.250.197 eth0 LINUX ROUTER eth1 192.168.8.88 ------------------ 192.168.8.112 eth0 Windows XP Client Steps (performed on LINUX ROUTER) (1) Delete route to 192.168.8.0 from
2014 Dec 24
0
Re: Using virsh blockcopy -- what's it supposed to accomplish?
On 12/23/14 2:08 PM, Eric Blake wrote: > On 12/23/2014 11:35 AM, Gary R Hook wrote: >> On 12/22/14 4:50 PM, Eric Blake wrote: >>> On 12/22/2014 03:27 PM, Gary R Hook wrote: >>>> I am experimenting with the blockcopy command, and after figuring out >>>> how to integrate qemu-nbd, nbd-client and >>>> dumpxml/undefine/blockcopy/define/et. al. I
2008 May 28
2
home lan
I've read too many articles and posts on "domain master browser", "computer master browser", "NT domain browser", "PDC and BDCs", etc. etc. and I've managed to confuse my shrinking brain over this. I apologize in advance if I'm posting a redundant question (I've looked thru archivers best I could) or posting to the wrong place.
2017 Aug 03
2
problema al transformar columna tipo "factor" a tipo "numeric" en data.table
Creo que el problema es que cuando lo pasas directamente a numeric el toma los niveles para transformarlos. Los factores tienen sus niveles con sus etiquetas, digamos, que es lo que vemos nosotros. Por ejemplo machos y hembras puede ser lo que vemos mientras que internamente los niveles son 1 y 2. Si fuera ese el problema yo lo resuelvo transformando primero en character y luego a numeric.
2013 Mar 03
2
[LLVMdev] Question about method CodeExtractor::severSplitPHINodes
Thanks for reply Chuck. Please excuse me if I'm not supposed to reply to all. Are you saying all PHI nodes are required to include all its predecessor blocks no matter they have input or not? What about successor blocks? Are they optional if they don't provide inputs? BTW, where should I look at to verify this, the mem2reg.cpp & PromoteMemToReg.cpp? Thanks a lot. On Sat, Mar 2, 2013
2017 Feb 23
2
"IN" en data.table
Hola a todos. ¿Es posible filtrar casos en data.table por más de una categoría al mismo tiempo? Algo así como un IN o similar, dónde IN puede entenderse como "existe en": datos[Provincia IN c("CATAMARCA", "CHACO", "CORRIENTES"), FORM] O sea: una forma abreviada de hacer:
2003 Apr 07
0
SAMBA TWEAKS FOR WINDOWS 2000 WORKSTATIONS
Please provide any information's on performance parameters (for copying and files transfer) tweakings for MS Windows 2000 workstation client. Regards, Tony Dang Project Business Manager SAIC - HOUSTON (281)552-2795 Voice (281)235-0169 Cell tony.d.dang@saic.com This e-mail is intended only for the addressee named above. As this e-mail may contain confidential or privileged information,
2017 Apr 01
2
Intervalos de confianza de la varianza de los residuos en unmodelo no lineal.-
??Gracias Javier,? 2017-04-01 12:07 GMT-03:00 <javier.ruben.marcuzzi en gmail.com>: > Mi duda es la siguiente, la varianza residual en su modelo, es homogénea o > heterogénea, ?La varianza es homogénea, común a todas las observaciones. Digamos que el modelo es el siguiente, y=f(x, betas)+e con f alguna función no lineal cuyos parámetros son betas y con e~N(0, sigma2). Uno suele
2010 Nov 10
2
randomForest can not handle categorical predictors with more than 32 categories
I received this error Error in randomForest.default(m, y, ...) : Can not handle categorical predictors with more than 32 categories. using below code library(randomForest) library(MASS) memory.limit(size=12999) x <- read.csv("D:/train_store_title_view.csv", header=TRUE) x <- na.omit(x) set.seed(131) sales.rf <- randomForest(sales ~ ., data=x, mtry=3, importance=TRUE) My
2002 Apr 04
1
Filesystem security stuff
Dear all, I am planning to add some cryptographic properties (file encryption and digital signature on file I/O) to Linux filesystem. In detail, I want that user can do file I/O with encrypted files like he used to do with usual file except some minor changes (e.g. supply key for decrypting file). For digital signature, all read and write acts on file of any user must be signed and recorded so
2011 Feb 21
2
Delete Comment Lines from SQL String as a Vector
Hi, I tried to remove the text starts by "--" to the end of the line as below sql=c("-- This is a comment line", "select sysdate -- This is a comment Text" , " from dual ") >sql [1] "-- This is a comment line" [2] "select sysdate -- This is a comment Text" [3] " from dual " I try to have this > sql
2017 Jan 19
2
read.table con .csv separado por "|"
Tenía la versión data.table 1.9.6.- Actualicé a la data.table 1.10.0 y funcionó tal cual lo indicás. Muchas gracias. ?Para eliminar las " adicionales estoy usando: library(stringr) library(plyr) datos$d_nomenclador <- str_replace(datos$d_nomenclador, pattern='\\","', replacement="") datos$nomenclador_descripcion<- str_replace(datos$nomenclador_descripcion,
2002 Jul 12
5
rsync 2.5.5 Tru64 5.1
Hi, I am trying to compile rsync 2.5.5 on a Tru64 box. I downloaded configure.in revision 1.148, which I believe is the correct fix for the getaddrinfo problem; however I still have errors compiling rsync. Also I had to change line 22 in options.c from #include "popt.h" to #include "popt/popt.h". Any suggestions or ideas? Tan Dang
2011 Dec 08
1
How to load the data set from an URL Link?
My problem is very easy, but it took me hours without a solution. So, I have to take any data set from UCI repository website for example this one which is about consensus income: http://archive.ics.uci.edu/ml/datasets/Census+Income And here is the data folder: http://archive.ics.uci.edu/ml/machine-learning-databases/adult/ My task is to caculate to do this: a) Calculate measures of
2017 Oct 27
0
Fwd: Network interface regression on F26 VM after 4.13/4.12 kernel update
I did not hear back on this posting so I figured I was addressing the wrong audience. Maybe someone on the host-side better understands how the 4.12 kernel is interacting with KVM. Thanks, -Philip > Begin forwarded message: > > From: Philip Prindeville <philipp_subx at redfish-solutions.com> > Subject: Network interface regression on F26 VM after 4.13/4.12 kernel update
2005 Dec 08
1
complex table
I have a data table with 712 cases (rows) describing young people’s activities for 72 months each case has been classified into one of 5 clusters. The first 72 columns are monthly activities coded 1 to 6 (e.g. school =1) and the 73rd column is the cluster number of the case. I wish to summarise the distribution of monthly activities by cluster e.g for cluster 1: 6 months school; 24 further
2015 Jun 19
4
Sobre data.table
Hola, ¿qué tal? ¿Y por qué no, simplemente, sapply(mi.data.table, function(x) sum(is.na(x)))? Un saludo, Carlos J. Gil Bellosta http://www.datanalytics.com El día 19 de junio de 2015, 14:44, Olivier Nuñez <onunez en unex.es> escribió: > Si te devuelve 0 para todas las columnas es que no hay NA's. > Tal vez son caracteres igual a "NA". > Para asegurarte de ello,
2013 Oct 16
0
data.table package
Hola, Yo en vez de data.table, probaría con el paquete "*sqldf*" que tiene una sintaxis en sus queries más sencilla que la de data.table. Y en términos de volumen [1] y velocidad [2] de respuesta son bastante equivalentes. [1]: http://stackoverflow.com/questions/4761073/r-how-to-rbind-two-huge-data-frames-without-running-out-of-memory [2]: