Displaying 20 results from an estimated 203 matches for "azul's".
Did you mean:
acl's
2015 Mar 22
2
Combinatoria
Sí, también...
Para las permutaciones, n=r.
Y con el parámetro "repeats.allowed" controlas si son con o sin repetción:
#----------------------
> #Permutaciones *con repetición*
> permutations(n=3, r=3, v=x, repeats.allowed=TRUE)
[,1] [,2] [,3]
[1,] "azul" "azul" "azul"
[2,] "azul" "azul" "rojo"
[3,] "azul" "azul" "verde"
[4,] "azul" "rojo" "azul"
[5,] "azul" "rojo" "rojo"
[6,] "azul&quo...
2015 Mar 22
3
Combinatoria
...las permutaciones, n=r.
> Y con el parámetro "repeats.allowed" controlas si son con o sin repetción:
>
> #----------------------
> > #Permutaciones *con repetición*
> > permutations(n=3, r=3, v=x, repeats.allowed=TRUE)
> [,1] [,2] [,3]
> [1,] "azul" "azul" "azul"
> [2,] "azul" "azul" "rojo"
> [3,] "azul" "azul" "verde"
> [4,] "azul" "rojo" "azul"
> [5,] "azul" "rojo" "rojo"...
2015 Mar 22
2
Combinatoria
...ra la función "choose()" para el cálculo de las
> combinaciones. En el ejemplo de la función incluso aparece una forma de
> generar el triángulo de Pascal.
>
> #--------- Ejemplo de Combinaciones con repetición (gtools) -----
>
> > x <- c('rojo', 'azul', 'verde')
> > # Combinaciones sin repetición
> > combinations(n=3, r=2, v=x, repeats=FALSE)
> [,1] [,2]
> [1,] "azul" "rojo"
> [2,] "azul" "verde"
> [3,] "rojo" "verde"
> > # Combinaciones...
2015 Mar 23
2
Combinatoria
...gt; > combinaciones. En el ejemplo de la función incluso aparece una forma
>> de
>> > generar el triángulo de Pascal.
>> >
>> > #--------- Ejemplo de Combinaciones con repetición (gtools) -----
>> >
>> > > x <- c('rojo', 'azul', 'verde')
>> > > # Combinaciones sin repetición
>> > > combinations(n=3, r=2, v=x, repeats=FALSE)
>> > [,1] [,2]
>> > [1,] "azul" "rojo"
>> > [2,] "azul" "verde"
>> > [3,] "r...
2012 Nov 22
1
prediction problem
...925373 0,03256445 0,054726368 0 0 0 0,610476668 0 0 0,031623122 0,225502758 0,110096002 0 0 0 0 221,1
12 PRT00000112140260 amarelo A7 B5 0 0 0,009701493 0,664925373 0 0,017164179 0,042537313 0,023880597 0 0 0 0,011007463 0,617276119 0 0,004626866 0 0,120279851 0,012649254 0 134
13 PRT00000112140305 azul A7 B5 0 0 0 0 0 0 0,095049505 0 0 0 0 0 0 0 0 0,080972426 0,567469139 0 0 101
14 PRT00000112140366 azul A7 B5 0 0 0,014857143 0,102857143 0,04 0,014857143 0,011428571 0,217142857 0 0 0 0,005893035 0,125398294 0,16692363 0,013019495 0 0,024394422 0,152328091 0 87,5
15 PRT00000112140373 azul A7 B5 0...
2015 Mar 22
2
Combinatoria
...pueden obtener las variaciones con y sin repetición en R.
Eso sí están un poco escondidas...
Se pueden calcular de esta forma:
#----------------------
> #Cargar el paquete gtools
> library(gtools)
> #Definir el conjunto sobre el que se hará el cálculo
> x <- c('rojo', 'azul', 'verde')
> #Utilizar la función "permutations()" modificando el valor de "r" y
> #modificando el parámetro "repeats.allowed" dependiendo si sequieren con
o sin repetición
> permutations(n=3, r=2, v=x, repeats.allowed=FALSE)
[,1] [,2]
[1,]...
2019 Nov 16
2
Calcular variable dummy sobre configuracion de dos variables tipo factor. Dummy yo.
...a
intentar ejemplificarlo, propongo una matriz original como esta:
caracteristica valor sitio edad
123456789 tiza acá joven
123456789 blanco acá viejo
123456789 blanco allá joven
123456789 blanco allá viejo
234567891 rojo acá joven
234567891 colorado acá viejo
234567891 azul allá joven
234567891 azul allá viejo
234567891 azul acá viejo
345678912 teja acá joven
345678912 rojo acá viejo
345678912 rojo alla joven
345678912 blanco alla viejo
...en la que la variable característica puede tomar uno o más valores en
cada sujeto (sitio+edad)....
2019 Sep 19
2
ggplot con gradientes complejos
Muy buenas. Quiero hacer un mapa que me pinte en azul los valores negativos
y en rojo los positivos. Los negativos llegan hasta -400 y los positivos
hasta 200. Si pongo limits=c(-200, 200), me colorea bien los positivos
(rojo), pero los negativos por debajo de -200 me los pone gris. Si pongo
limits=c(-400, 200), me colorea bien los negativos (azul),...
2018 Mar 13
1
[SCEV] Inconsistent SCEV formation for zext
...e better than I do.
>
> Thanks,
> Pankaj
>
> -----Original Message-----
> From: Sanjoy Das [mailto:sanjoy at playingwithpointers.com]
> Sent: Tuesday, March 13, 2018 1:34 PM
> To: Chawla, Pankaj <pankaj.chawla at intel.com>
> Cc: Maxim Kazantsev <max.kazantsev at azul.com>; Serguei Katkov <serguei.katkov at azul.com>; llvm-dev at lists.llvm.org
> Subject: Re: [SCEV] Inconsistent SCEV formation for zext
>
> This sounds fine to me (and sorry for the delay!).
>
> -- Sanjoy
>
> On Mon, Mar 12, 2018 at 1:09 PM, Chawla, Pankaj <pankaj....
2019 Sep 20
2
ggplot con gradientes complejos
...a+reprex:
> https://reprex.tidyverse.org/articles/articles/datapasta-reprex.html)
>
> Un saludo,
> Emilio
>
> > El 19 sept 2019, a las 18:34, Manuel Mendoza <mmendoza en fulbrightmail.org>
> escribió:
> >
> > Muy buenas. Quiero hacer un mapa que me pinte en azul los valores
> negativos
> > y en rojo los positivos. Los negativos llegan hasta -400 y los positivos
> > hasta 200. Si pongo limits=c(-200, 200), me colorea bien los positivos
> > (rojo), pero los negativos por debajo de -200 me los pone gris. Si pongo
> > limits=c(-400...
2018 Mar 14
2
Commit module to Git after each Pass
The print-module-after-all type of option exists in upstream:
-print-module-scope - When printing IR for print-[before|after]{-all} always print a module IR
commit 7d160f714357f6784ead669ce516e94991c12e5a
Author: Fedor Sergeev <fedor.sergeev at azul.com<mailto:fedor.sergeev at azul.com>>
Date: Fri Dec 1 17:42:46 2017 +0000
IR printing improvement for function passes - introducing -print-module-scope
Summary:
When debugging function passes it happens to be rather useful to dump
the whole module before the transfor...
2016 Oct 03
2
Encontrar datos en un data.farame
Buenas,
Tengo dos data.frame
DF1
color numero
verde 2
rojo 4
azul 3
y DF2
color
verde
verde
verde
rojo
rojo
azul
Quieo que se añada en el segundo dataframe el contenido del DF1 .El ejemplo puesto est trivial y parece que se podria resolver fácilmente con un par de ifelse, pero en la realidad existen más de 4000 registros diferentes para el DF1.
¿...
2018 Mar 13
2
[SCEV] Inconsistent SCEV formation for zext
...>
> So what is the verdict on this issue?
>
> Thanks,
> Pankaj
>
>
> -----Original Message-----
> From: Chawla, Pankaj
> Sent: Monday, February 26, 2018 11:12 AM
> To: Sanjoy Das <sanjoy at playingwithpointers.com>
> Cc: Maxim Kazantsev <max.kazantsev at azul.com>; Serguei Katkov <serguei.katkov at azul.com>; llvm-dev at lists.llvm.org
> Subject: RE: [SCEV] Inconsistent SCEV formation for zext
>
> Hi Sanjoy,
>
>>> I'm a bit apprehensive of adding more caching to solve problems created by caching; but if there is no way...
2018 Mar 15
0
Commit module to Git after each Pass
...> -print-module-scope - When
> >>> printing IR for print-[before|after]{-all} always print a
> module IR
> >>>
> >>> commit 7d160f714357f6784ead669ce516e94991c12e5a
> >>> Author: Fedor Sergeev <fedor.sergeev at azul.com
> <mailto:fedor.sergeev at azul.com>
> >>> <mailto:fedor.sergeev at azul.com <mailto:fedor.sergeev at azul.com>>>
> >>> Date: Fri Dec 1 17:42:46 2017 +0000
> >>>
> >>> IR printing improvement for f...
2018 Mar 13
0
[SCEV] Inconsistent SCEV formation for zext
...to implement this?
You know the codebase better than I do.
Thanks,
Pankaj
-----Original Message-----
From: Sanjoy Das [mailto:sanjoy at playingwithpointers.com]
Sent: Tuesday, March 13, 2018 1:34 PM
To: Chawla, Pankaj <pankaj.chawla at intel.com>
Cc: Maxim Kazantsev <max.kazantsev at azul.com>; Serguei Katkov <serguei.katkov at azul.com>; llvm-dev at lists.llvm.org
Subject: Re: [SCEV] Inconsistent SCEV formation for zext
This sounds fine to me (and sorry for the delay!).
-- Sanjoy
On Mon, Mar 12, 2018 at 1:09 PM, Chawla, Pankaj <pankaj.chawla at intel.com> wrote:
&...
2018 Mar 15
2
Commit module to Git after each Pass
...gt; -print-module-scope - When
> >>> printing IR for print-[before|after]{-all} always print a module IR
> >>>
> >>> commit 7d160f714357f6784ead669ce516e94991c12e5a
> >>> Author: Fedor Sergeev <fedor.sergeev at azul.com
> >>> <mailto:fedor.sergeev at azul.com>>
> >>> Date: Fri Dec 1 17:42:46 2017 +0000
> >>>
> >>> IR printing improvement for function passes - introducing
> >>> -print-module-scope
> >>>
> >>>
>...
2007 Jan 03
12
instalation problem
Hi
Im testing wxRuby. I have a problem when ruby try to load the load wx.
Im newbie to ruby, maybe a make a simple mistake :
Best regards.
Install wxRuby--------------------------------------------------------------
pedro@la-vaca-azul:~$ sudo gem install wxruby2-preview
Need to update 2 gems from http://gems.rubyforge.org
..
complete
Select which gem to install for your platform (i486-linux)
1. wxruby2-preview 0.0.38 (i686-linux)
2. wxruby2-preview 0.0.38 (powerpc-darwin7.9.0)
3. wxruby2-preview 0.0.38 (i686-darwin8.4.1)
4....
2019 Sep 20
2
ggplot con gradientes complejos
...l)
>> >
>> > Un saludo,
>> > Emilio
>> >
>> > > El 19 sept 2019, a las 18:34, Manuel Mendoza <
>> mmendoza en fulbrightmail.org>
>> > escribió:
>> > >
>> > > Muy buenas. Quiero hacer un mapa que me pinte en azul los valores
>> > negativos
>> > > y en rojo los positivos. Los negativos llegan hasta -400 y los
>> positivos
>> > > hasta 200. Si pongo limits=c(-200, 200), me colorea bien los
>> positivos
>> > > (rojo), pero los negativos por debajo de -2...
2016 Oct 25
2
Colores en names.arg de un barplot()
Gracias, Javier. Está muy bueno el post, pero en efecto refiere a legend y
no a los names.arg
Adjunto un archivo para poder correr el gráfico. Creo que eso ayuda a
precisar el problema. Las etiquetas que aparecen al costado izquierdo de
las barras son las que quiere pintar de negro y azul.
También va a necesitar este objeto para que la sintaxis corra sin errores:
library(RColorBrewer) #Para Colorear
col.segmentos <- brewer.pal(9,"Paired")
Gracias!
El 25 de octubre de 2016, 15:16, <javier.ruben.marcuzzi en gmail.com> escribió:
> Estimado Mauricio Monsalvo
>...
2016 Oct 25
2
Colores en names.arg de un barplot()
Hola.
Tengo un gráfico que tiene muchos names.arg (demasiados...), de modo tal
que le vendría bien al lector usar colores intercalados, tal que el primero
sea azul, el segundo negro, el tercero azul, cuarto negro, y así. Es decir,
definir un vector "similar" a este:
rep(c("black", "blue"), length(barras[,1]/2)
que permita pintar uno y uno en este gráfico:
barplot(t(barras[,2:10]), horiz=T, col=col.segmentos, border=F, space=0,...