Displaying 20 results from an estimated 46 matches for "bordes".
Did you mean:
border
2011 Sep 15
1
Colour code y-axis labels on a dot plot
Dear R helpers
I would like to be able to colour code the y-axis labels on a complex dot
plot by a variable known as company (of which there are only two). The code
is below and data attached.
Thanks
MarkM
library("lattice")
library(latticeExtra) # for mergedTrellisLegendGrob()
# set size of the window
windows(height=10, width=7,rescale=c("fixed"))
##read the data to a
2011 Feb 28
2
Generation of M3U and XSPF
...config->hostname, config->port,
sourceuri
);
config_release_config();*
Or do you know an alternative to hide port to users..
Thanks
-------------------------------------------------------------------------------
sebastien.bordes at gmail.com - http://blog.webeo.fr
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.xiph.org/pipermail/icecast/attachments/20110228/9ed1776d/attachment.htm
2011 Sep 10
0
Mutiple vertical reference lines with a dotplot
Dear R helpers
I would like to plot vertical reference lines for yearly averages the
variable being plotted. In this case there are three years 2002, 2009 and
2010 for a variable Resc_Gt.
I've attempted to get the 2002 mean plotting (2.27) using the 'abline'
command but no joy.
Ideally I would like to be able to compute and plot the means of the three
years automatically using a
2015 Aug 18
2
Asterisk 13 chan_sip trunk appending @string to dialled number
Yes indeed.
Do you have the dialplan, eg from /etc/asterisk/extensions.conf?
Something is getting this OUT_3_SUFFIX variable and including it in a Dial
to 172.22.4.12.
On 18 August 2015 at 16:21, Brendan Ord <bord at staff.onthenet.com.au> wrote:
> Starting to make sense when I saw this line:
>
>
>
> [2015-08-18 15:01:33] DEBUG[19366][C-00001cfc]: pbx.c:3785
>
2015 Aug 18
2
Asterisk 13 chan_sip trunk appending @string to dialled number
Hello,
So, I found this line under macro-dialout-trunk, in extensions_additional.conf (FreePBX, so it controls the conf files mostly);
exten => s,n,Dial(${OUT_${DIAL_TRUNK}}/${OUTNUM}${OUT_${DIAL_TRUNK}_SUFFIX},${TRUNK_RING_TIMER},${DIAL_TRUNK_OPTIONS})
If I grep for OUT_3_SUFFIX in all files in /etc/asterisk I get nothing..
Here's a paste of a few things out of the two files that I
2011 Mar 01
0
Generation of M3U and XSPF
.../icecast2_config_file.html#misc
In that case, perhaps Icecast is picking up the server name from the http
headers. Can you get your proxy to re-write the headers in the request?
Otherwise, you could just generate local m3u/xspf files for each stream?
- Leo
On 28 February 2011 20:21, Sebastien Bordes <sebastien.bordes at webeo.fr>wrote:
> Hello,
>
> I'm a new user of icecast which is a really cool software.
>
> I use it with the the http proxy module of apache httpd to do port
> forwarding with 2 sub domains.
>
> On my router i forward all tcp traffic of the p...
2020 Sep 27
2
GRÁFICO DE BARRAS COMPARATIVO VARIOS AÑOS
Buenas noches,
Tengo que preparar un gráfico de barras comparativo para varios años, en
el que tenga agrupadas, 3 barras para enero, 3 barras para febrero, 3
barras para marzo y así sucesivamente para todos los meses, estando en cada
mes, los años 2020, 2019 y 2018 (juntas), un pequeño espacio y luego las de
febrero y así sucesivamente...
Con el siguiente código, hago un año:
2011 Mar 14
2
color under lm line
Hi,
I would like to add a color under a lm line and not the plotted line. Is
this possible? In the example, I do not want the area under the curve red,
but rather under the llm line.
x=seq(0,5,len=100)
y=-(x-5)^2
llm<-lm(y~x)
plot(x,y)
polygon(c(x,x[length(x)]), c(y, y[1]), col='red')
abline(llm)
keith
--
M. Keith Cox, Ph.D.
Alaska NOAA Fisheries, National Marine Fisheries Service
2015 Aug 18
2
Asterisk 13 chan_sip trunk appending @string to dialled number
David,
I should also note;
246 is my extension, it has IP 172.22.3.238.
172.22.4.8 is the PBX, and 172.22.4.12 is the 2800 gateway.
The trunk is called ?testing? at the moment. The route that selects this trunk uses a 9 prefix.
This system is in semi-production, so there might be fluff in the log from other active calls.
Brendan Ord
OntheNet - Network Engineer
P 07 5553 9222
F 07 5593 3557
2011 Nov 27
1
conflict when passing an argument to a function within an other function
Dear all,
I have a problem with this piece of code which I don't really see how to
overcome and I think it might also be of more general interest:
map(xlim=c(-10,40),ylim=c(30,60)
,mar=rep(0,4)+.1
,fill=T
,col="darkseagreen"
,bg="skyblue"
)
The idea is to use the map function from the maps package to draw a map of
Europe. By default with the argument fill=T there is
2015 Jul 22
2
Cisco 7940 and PJSIP registration
I?ve gotten to the bottom of this;
Seems that the pjsip.endpoint_custom.conf isn?t getting included properly, or my syntax is wrong.
If I put force_rport=no into pjsip.endpoint.conf and reload only Asterisk, everything works perfectly. Unfortunately, I?m using FreePBX, so it owns this file and my changes won?t persist a FreePBX reload.
Brendan Ord
OntheNet - Network Engineer
P 07 5553 9222
F
2015 Aug 18
5
Asterisk 13 chan_sip trunk appending @string to dialled number
Hello,
I'm having what seems like a weird issue connecting Asterisk 13 (FreePBX 12) to a Cisco 2811 router via a chan_sip trunk. Whenever I try dialling out via this trunk, something appends '@CUBE' onto the end of the dialled number, as per the following examples;
Asterisk log;
app_dial.c: Called SIP/test/0429123456 at CUBE
chan_sip.c: Got SIP response 500 "Internal Server
2020 Sep 23
2
ORDEN GRÁFICO POR MESES
Hola,
Estoy haciendo un gráfico con:
#############################################################################
## GRAFICO BARRAS : VALORES AL DEBE MENSUALIZADO
ggplot(Diario_S2, aes(x=mes_AAA, by = MES , y=ARS_DEB))+ # ASIGNAR
VARIABLES
geom_bar(stat="identity", width=0.7, # ANCHO BARRAS
colour="grey", fill="darkgreen", #
2007 Jul 23
2
persp and greek symbols in the axes labels
Hello,
I am plotting a 3D function using persp and I would like to use greek
symbols in the axes labels.
I have found examples like this one on the web:
plot(0,0,xlab=expression(kappa[lambda]),ylab=substitute(paste(phi,"=",true,sigma),list(true=5)))
this works well with plot but not with persp:
with the command
persp(M,theta = -20,phi =
2011 Jan 06
0
No subject
If you don't use 'CERTVERIFY 1', then this will at least make sure that
nobody can sniff your sessions without a large effort (...)
> So, do I misunderstand CERTVERIFY directive ? Or is there a bug ?
>> Can you reproduce such behaviour ?
>>
>
> I'm not sure what is going on. Can you try running 'upsmon' with debugging
> enabled? The following are
2015 Jul 22
2
Cisco 7940 and PJSIP registration
Hi list,
I've been googling this issue and found some good resources however I am still running into problems with the following combo ... Here's my story;
- Asterisk 13.4 with FreePBX 12.
- Migrating from Asterisk 11 / FreePBX 2.11
- Mix of Cisco 79xx handsets, mostly 7940G's.
My problems started with (the very common) issue of the 7940 not replying to 401
2010 Sep 24
7
help
Estimados
Escribo para consultar sobre el uso de modelos mixtos anidados. Los
datos que estoy analizando provienen de censos de malezas en cuatro
tipos de paisajes de la región pampeana, en los que seleccioné al azar
igual número de lotes agrícolas cultivados con tres cultivos (maíz,
soja y trigo-soja). En cada lote censé el número de especies de
malezas en tres posiciones: el alambrado, el borde
2017 Jun 02
2
CV en R
Buenas,
Puse los modelos lo mas simplificados, para centrar el tiro en el tema que me preocupa.
Es una pena no poder hablar cara a cara, porque por email puedo sonar algo borde, pero no es así, al contrario estoy enormemente agradecido por tu ayuda, pero le veo un problema.
Me dices que use un list para ir guardando el modelo, pero tal y como he propuesto en el bucle for, el modelo se crea 10
2017 Jun 02
2
CV en R
Hola,
Eso es justamente lo que hace "caret" de una manera muy sencilla y sin que
tú te tengas que preocupar de quedarte con el mejor bucket (del CV) o con
la mejor combinación en tu "grid search".
Te recomiendo que uses "caret" para esto....
Puedes incluso evaluar los dos algoritmos "RF" y "svm" a la vez y conocer
realmente el nivel de precisión
2006 Jan 27
2
Disk/Boot problems when upgrading BIOS
I don''t know if it''s caused by ZFS or drivers/disks, but the symptoms are as follows.
M-bord ASUS KN8-E Deluxe with Athlon 64.
Running snv_30. When upgrading BIOS to current, the machine can''t boot anymore and crashes just after GRUB booting the Solaris kernel. BIOS contains SATA upgrades and I''ve got a newer SATA II disk installed.
When downgrading to BIOS