similar to: Pasar cotización en pesos a dólares usando tipo cambio día hábil anterior

Displaying 20 results from an estimated 110 matches similar to: "Pasar cotización en pesos a dólares usando tipo cambio día hábil anterior"

2020 Apr 17
3
Convertir lista de precios a dolares por gramo
Se ha borrado un adjunto en formato HTML... URL: <https://stat.ethz.ch/pipermail/r-help-es/attachments/20200417/11369880/attachment.html>
2013 Sep 17
2
eigenvalores y eigenvectores
Buenos Días, en esta ocasión les escribo para tratar de solucionar una duda que puede resultar muy sencilla, pero de la que no encuentro solucion. necesito hallar la descomposición en valores singulares; tengo la siguiente matriz de datos: DPTO PERSONAS HACINA INTERNET COMPU TV_SUCRIPC Antioquia 4962749,1 1,61 0,39 0,47 0,77 Atlántico 2191360,7 1,97 0,3 0,31 0,42 Bogotá D.C. 7499198 1,67
2019 Nov 25
2
Restar datetime, resultado erróneo
Pues es buena solución, muchas gracias Álvaro. El lun., 25 nov. 2019 a las 10:25, Álvaro Hernández Vicente (<alvarohv en um.es>) escribió: > Pues lo más rápido quizá sea sumarle los minutos totales que tiene un > día a los que te salgan negativos. > > -1315 + 24*60 = 125 min > > Un saludo > Álvaro > > El 25/11/19 a las 9:36, Ruben Tobalina Ramirez escribió: >
2019 Nov 27
2
Restar datetime, resultado erróneo
Hola Javier, Entiendo que te refieres que lo idóneo sería poner bien el formato y la hora, es decir si un programa comienza a las 23:50 y es de hoy, por ejemplo su formato sería: 27/11/2019 23:50. Si el siguiente programa comienza a las 00:30, sería 28/11/2019 00:30. ¿Te refieres a esto? Totalmente de acuerdo, pero la pagina donde estoy webscrapeando los datos no lo tienen así, y no se me ocurre
2005 Aug 03
7
call fortran in R
Hello, I used a mac G5, R.2.1.1, and G77 3.4.4 and I would like to use and call a fortran subroutine. The trouble is that it seems I am not able to correctly load the compiled code. Here is what I have done: In the terminal this how I compiled my fortran code: R CMD SHLIB ~/Desktop/Fortan_kmeans/kmeans3.f There is the wrapper I have paste inside de kmeans3.f file: c
2006 Jun 02
1
Multivariate skew-t cdf
Dear All, I am using the pmst function from the sn package (version 0.4-0). After inserting the example from the help page, I get non-trivial answers, so everything is fine. However, when I try to extend it to higher dimension: xi <- alpha <- x <- rep(0,27) Omega <- diag(0,27) p1 <- pmst(x, xi, Omega, alpha, df = 5) I get the following result: >p1 [1] 0 attr(,"error")
2016 Feb 08
3
help estadística!!!!!
Estimado muchas gracias por la respuesta; pero tengo otra interrogante. Para segmentar toda la data de clientes los cuales ya los vi bien y no son 15,000 sino 315,000 necesito utilizar el análisis de segmentación de K-medianas o K-modas, porque al ser datos ordinales y dicotómicos (la gran mayoría de variables), la aplicación de segmentar a través de k-medias no tiene mucho sentido. El R tiene
2012 Nov 13
2
multiply each row in a matrix with the help of the for loop
Dear R users, I have this program aa<-array(rep(0,27),dim=c(3,3,3)) a<-matrix(rep(1,9),ncol=3) n<-0 for (i in 1:3) {            a[i,]<-a[i,]*(-1)       n<-n+1       aa[,,n]<-a[i,] } but i real want to multiply each row  with -1 according to for loop and after that to put it in the array.  I will give an example for what excaclty want -1 -1 -1  1  1  1  1  1  1 -1 -1 -1 -1
2014 Feb 14
2
[LLVMdev] DominatorTree not updated properly after calling the llvm::SplitBlock.
Hi Fellows, I am writing a pass that requires the DominatorTree pass. In the runOnFunction of my own pass, I call llvm::SplitBlock to split a block (%for.end) at it's first insert point. Then, when I dump my dominator tree immediately after, I can see the newly split %for.end.split, but its DFSNumIn and DFSNumOut are not properly updated in llvm::SplitBlock (i.e., still the initialized
2010 Jul 24
2
Pesos en modelos mixtos
Hola a todos, Me gustaria saber si en un modelo mixto se puede usar el tamaño de muestra como peso o es incorrecto hacerlo. Por ejemplo en el comando 'lmer' del paquete lme4 hay una opcion 'weights' (igual que en 'lm' de stats). Si tengo datos de una medida (por ejemplo el peso) de 10 especies de aves (rango, de 50 a 3000 datos segun la especie) ¿puedo usar esta n en
2004 Jul 09
0
[LLVMdev] LiveIntervals::handlePhysicalRegisterDef, unreachable MBBs
On Fri, 2004-07-09 at 05:02, Vladimir Prus wrote: > I've just spend some time looking at the above function, and while I > understood what it does, a comment would have helped a lot. Thanks for bringing this to my attention! > Maybe, something like: > > // Determine the end of the live interval for this register > // For physical register, all internvals are within basic
2014 Feb 14
2
[LLVMdev] DominatorTree not updated properly after calling the llvm::SplitBlock.
Hi Andrew, Thanks a lot. But the function "DT->dominate(A,B)" decides the dominance relationship through comparing the DFS numbers, right? At least, in my example, when I check whether the newly split node (i.e., % *for.end.split*) DOMINATES the original node (I.e., %for.end), the answer is true, which is obviously wrong. Paul On Fri, Feb 14, 2014 at 1:59 AM, Andrew Trick
2008 May 07
3
use list elements to subtract values from the dataframe
Hi, I have a dataframe wf existing of a header with different labels and beneath the values of those labels : wf: label1 label2 ... 0,45 0,21 0,10 0,45 .... .... I have a list fl <- c("label2","label3",..) Isn't possible to use the list elements in the list in order to subtract values from the dataframe? like : wf$fl[[1]] When I do in R I get :NULL
2010 Aug 05
3
[LLVMdev] a problem when using postDominatorTree
On 08/05/2010 06:46 AM, Wenbin Zhang wrote: > Hi all, > I'm using postDominatorTree to do some program analysis. My code works > well for small tests, but when I run it on real applications, the > following error occurs: > /Inorder PostDominator Tree: DFSNumbers invalid: 0 slow queries. > [1] <<exit node>> {0,21} > [2] %bb1 {1,2} > [2] %bb {3,4} > [2]
2006 Jun 26
2
compare odds ratios
Hi there, is there any way to compare 2 odds ratios? I have two tests that are supposed to detect a disease presence. So for each test, I can compute an odds ratio. My problem is how can I compare the 2 tests by testing whether the 2 odds ratios are the same? Appreciate
2004 Jul 09
3
[LLVMdev] LiveIntervals::handlePhysicalRegisterDef, unreachable MBBs
I've just spend some time looking at the above function, and while I understood what it does, a comment would have helped a lot. Maybe, something like: // Determine the end of the live interval for this register // For physical register, all internvals are within basic blocks so // we look for the instruction in this basic block which last uses it. The first loop might have a comment like:
2013 Sep 27
2
RV: cronbach
¿existe algún método en el cual no sea necesario hacer este trabajo y que aparezcan los nombres de las preguntas? label.cronbach <- label.var(p01, "¿Le agrada el programa que se le ha mostrado? ") label.cronbach <- label.var(p02, "¿Cree que ayuda en el aprendizaje?") label.cronbach <- label.var(p03, "¿Propicia el trabajo en el equipo?") label.cronbach
2013 Jul 29
3
duda reemplazar valores en data frame según condición
Estimados quería realizarles una consulta: Trabajo con una tabla con 23 registros, la cual tiene en la columna "*ar4*" valores de una variable llamada ranking para cada registro, y una columna "percentil" donde le voy a colocar el nivel de percentil en el que se encuentra ese valor (ar4) de cada uno de esos 23 registros. La tabla es la siguiente:: código padre n ar4
2013 Sep 27
1
RV: cronbach
rm(list = ls()) #borra todo lo anterior en memoria setwd("G:/Public/Documents/R/EPICALC/") #como se llama la data desde su path sanda<-read.csv("sandavid2.csv",header=TRUE, sep=",", dec=".") use(sanda) attach (sanda) library (MASS) label.cronbach <- label.var(p01, "¿Consume mucho pan? ") ####¿Hay alguna manera de nombrarlos
2001 Dec 02
1
Recurrent message inbugger
Hi all, When a program crashes to debugger, I see hundreds of messages like this : failure on _Bool:t(0,21)=@s8;-16; at 16; Unknown type '1' What are these ? Are they critical ? ___________________________________________________________ Nokia 5510 Drole de look et quel son. Cliquez sur http://fr.promotions.yahoo.com/nokia/ d?couvrez le et tentez votre chance pour en gagner un! Fin