Displaying 20 results from an estimated 200 matches similar to: "Packet Level Load Balance inbound/outbound success with nth and route"
2005 Apr 29
1
problem with nth patch, counter parameter...I think
Hi all, I need some guidance to get my problem fixed. I believe there
is an issue with the ''nth'' patch from the patch-o-matic, which is
labeled as status ''works''.
I have tunnels back and forth across the internet, using ''nth'' to
balance packets between different public networks (over the tunnels).
I need to access some networks over two
2012 Jan 08
1
Difference across the Nth dimension of an array
I have a multidimensional array - in this case with 4 dimensions of x,y,z
and time. I'd like to take the time derivative of this matrix, i.e.
perform the diff operator along dimension number 4.
In Matlab, there is a simple option to specify which dimension the
difference is to be taken across., but I can't see this in R.
I realise I can use aperm to rotate my array so that time is in
2005 Oct 25
1
selecting every nth item in the data
I want to make a glm and then use predict. I have a fairly small sample
(4000 cases) and I want to train on 90% and test on 10% but I want to do
it in slices so I test on every 10th case and train on the others. Is
there some simple way to get these elements?
Stephen
--
21/10/2005
[[alternative HTML version deleted]]
2009 Mar 19
2
nth root
Hi,
Is there a function in R to calculate the nth root, similar to the
MATLAB function NTHROOT()?
Thanks,
Martin Biuw
[[alternative HTML version deleted]]
2010 May 13
2
Adding name to nth row
Hello,
I have a data frame with many rows, and I want to create a column with
a name only at every 12th row, starting from 97 to 278.
Thanks in advance!
2011 Oct 21
2
plotting with a symbol on every nth point
Hi,
I would like to produce a plot with a symbol on every nth point in a time
series data, like the one in the following:
http://www.phon.ucl.ac.uk/home/yi/ProsodyPro/EnglishFocus.png
x <- seq(-100,1000,25)
plot(x,type="l")
Could someone help me out with the above example?
Thanks....
[[alternative HTML version deleted]]
2009 Aug 18
2
value of nth percentile
Dear All,
I have to get the value of say 90th percentile of precipitation time series.. The series is of daily precipitation value of 96 years, I have to to get 90the percentile value of daily precipitation each year. If you know the R code or command for this please let me know.
I would appreciate your early response.
Thanking you,
Sincerely,
Ajay.
2008 Feb 25
1
Plotting series marked with a symbol on every nth data point, preferably in ggplot...
Hello!
I am working with signals and a plot of several signals on the same
axes can get quite messy. With lines that are very fractured,
distinction by only the linestyle is not very clear. If I add symbols
to the plot however, there are so many symbols, that they overplot and
the whole plot is unreadable once again. I am looking for advice on
how to make a plot with continuous lines and symbols
2012 Dec 02
2
How to calculate mean of every nth time series data with zoo or xts ?
Hello,
I have 1-minute time series stock data and I'd like to calculate mean of every n-th candle data of m-days.
result = c(mean of 1th data, mean of 2nd data, ...)
mean of 1th data = (1th data of 2012-1-1 + 1th data of 2012-1-2 + 1th data of 2012-1-3) / 3
mean of 2nd data = (2nd data of 2012-1-1 + 2nd data of 2012-1-2 + 2nd data of 2012-1-3) / 3
...
Could you let me know the fastest
2012 Apr 05
3
Apply function to every 'nth' element of a vector
Dear R users,
how do I e.g. square each second element of a vector with an even
number of elements? Or more generally to apply a function to every
'nth' element of a vector. I looked into the apply functions, but
found no hint.
For example:
v <- c(1, 2, 3, 4)
mysquare <- function (x) { return (x*x) }
w <- applyfun(v, mysquare, 2)
then w should be c(1, 4, 3, 16)
Thanks for
2008 Apr 22
2
nth step transition matrices
Hello,
I have a question in regards to markov chains and transition
probabilities.
I am trying to figure out a way to calculate the "kth-step transition
matrix" of a given matrix.
Say for example I have a single step 2x2 matrix:
1 2
P= 1 .95 .05
2 .01. 99
If I were to convert this matrix to a 2-step transition probability
matrix I would get:
2007 Nov 01
1
List of Nth removed associated objects.
Given the following..
Foo has_many :bars
Bar has_many ::widgets
Widget has_many :gadgets
Gadget has_many :parts
All of the following are now possible...
@foo.bars
@bar.widgets
@part.gadget.widget.bar.foo
However, I can''t just do the opposite of that last one...
@foo.bars.widgets.gadgets.parts
and get a full list of every Part associated with @foo.
I know there''s several
2023 Mar 08
1
nth kludge
I see many are not thrilled with the concise but unintuitive way it is
suggested you use with the new R pipe function.
I am wondering if any has created one of a family of functions that might be
more intuitive if less general.
Some existing pipes simply allowed you to specify where in an argument list
to put the results from the earlier pipeline as in:
. %>% func(first, . , last)
In
2001 Mar 28
4
How to extract every nth element from a vector
R-helpers:
Is there a simple way to extract every nth element from a very long vector?
[The vector I want to sample from is an object returned by lowess(). It is
so long (11,628 pairs of elements) that it is causing non-R-related memory
problems elsewhere. I don't see a better way other than sampling the output
returned from lowess.]
Thanks in advance.
Barry Cooke
2012 Jul 11
4
MODE , VARIANCE , NTH PERCENTAILE
Hi,
Here i have an matrix like this,
ABC PQR XYZ MNO
------ ------- ------ --------
3 6 7 15
2 12 24 15
20 5 1 2
25 50 15 35
i need to get the
"MODE" - for each column-wise
"VARIANCE" - for
2009 Jul 07
3
Answering the nTh call ...
Curious to know if anyone's created something similar to the following,
if so and you'd care to share an AGI or dialplan, much appreciated.
I will be eventually write a script to answer the nTH call. (if I can't
find it (why reinvent wheels).
Looking to do some testing sending anywhere between 50-200 calls to a
machine. I'd like a Snom/Polycom/whatever to pick up after the nTh
2006 Dec 16
1
ipfw: did i forget anything?
Hello, i hope this is the right list!
I tried making a firewall for my laptop..it wasn't as terribly difficult as i
thought it would be but i'm not sure if i forgot anything. And things can always
be done better :)
I'm not sure what i should've put under incoming connections... what i have put
there now is pretty useless because the default is to deny, but should i accept
any
2018 Jan 30
5
[Bug 1220] New: Reverse path filtering using "fib" needs better documentation
https://bugzilla.netfilter.org/show_bug.cgi?id=1220
Bug ID: 1220
Summary: Reverse path filtering using "fib" needs better
documentation
Product: nftables
Version: unspecified
Hardware: All
OS: All
Status: NEW
Severity: minor
Priority: P5
Component: nft
2005 Jan 26
0
Controlling Outbound traffic...alternative to dsl_qos_queue
Hi , this probably was asked many times before , but here it goes..
Until now i was using dsl_qos_queue - http://www.sonicspike.net/software/
Which limits outbound traffic and does packet priorites with iptables
using MARKed packets.. works very well , I run a ftpserver + webserver so
it''s usefull to set these 2 with lowest priority and my multiplayer gaming
running on certain UDP ports
2004 Feb 19
2
traffic normalizer for ipfw?
Hi there,
Is there some way to configure ipfw to do traffic
normalizing ("scrubbing", as in ipf for OpenBSD)? Is
there any tool to do it for FreeBSD firewalling?
I've heard that ipf was ported on current, anything
else?
TIA,
/Dorin.
__________________________________
Do you Yahoo!?
Yahoo! Mail SpamGuard - Read only the mail you want.
http://antispam.yahoo.com/tools