Displaying 20 results from an estimated 494 matches for "rl".
Did you mean:
url
2009 Sep 14
2
problems with reshape
Hello *
I would like to reshape wide the following dataset:
> rl <- read.dta("intermedi/rapporti_lavoro.dta") [c("id_rl","prog","sil_pi","sil_cf","sil_dat_avv")]
> dim(rl)
[1] 12964 5
> object.size(rl)
1194728 bytes
> head(rl)
id_rl prog sil_pi sil_cf sil_dat_avv
1 63...
2004 Aug 02
1
pxelinux.0 fails when ip address matchs nnn.nnn.nnn.n0n.
...et controller: Intel Corp.
82541EI Gigabit Ethernet Controller (Copper)
We booted some 200 machines successfully over the last few days
using pxelinux.0 and a root over NFS that requires kernel level
IP configuration.
The only failures were hosts with IP address
> lcg0469.gridpp.rl.ac.uk 130.246.182.100
> lcg0470.gridpp.rl.ac.uk 130.246.182.101
> lcg0471.gridpp.rl.ac.uk 130.246.182.102
> lcg0472.gridpp.rl.ac.uk 130.246.182.103
> lcg0473.gridpp.rl.ac.uk 130.246.182.104
> lcg0474.gridpp.rl.ac.uk 130.246.182.105
> lcg0475.gridpp.rl.ac.uk 130....
2010 Jan 14
2
Fixed size permutations
I'm using functions to return a matrix of all permutations of a
specified size from a larger list for predictor selection.
For each predictor size I use a seperate function like this:
bag2 <- function(n) {
rl <- c()
for (i1 in seq(n)) {
for (i2 in seq(n)) {
if (length(unique(c(i1,i2)))==1) {next}
rl <- cbind(rl,matrix(c(i1,i2)))
}
}
rl
}
bag3 <- function(n) {
rl <- c()
for (i1 in seq(n)) {
for (i2 in seq(n)) {
f...
2010 Aug 24
1
save() object w/o all of the loaded environment
I have two packages, one that does the actual work (SC) and the other
a Tcl/Tk UI (SCUI) that invokes methods within the former. Within the
SCUI's invocation method, I save an object returned from SC, the
results of a long-running method.
Now the object is completely described by the SC package. Unfortunately,
any attempt to load the object (in a fresh R session) fails as below.
R>
2005 Mar 17
1
Binding one column of characters into a dataframe factors other numeric columns
...rame, which makes it tough to call those columns for calculations later on.
I've tried using AsIs to prevent this, but without luck...in the examples
below, the object named "c" is the one that is the character column. The
others are numeric.
df_without_char <- data.frame(cbind(rl, gl, cp), row.names = rownames(r))
#without char vector
df_without_char <- data.frame(cbind(rl, gl, c, cp), row.names =
rownames(r))#with char vector
df <- data.frame(cbind(rl, gl, I(c), cp), row.names = rownames(r)) #try to
keep char vector AsIs
df <- data.frame(cbind(rl, gl, c=I(c)...
2002 Feb 08
1
looping through lists...
Hi, all. I have a whole group of lists with things like this:
nw.1$cond (a string)
nw.1$RL (a vector of 10 values)
nw.1$IL (a vector of 10 values)
and I have lots of these lists:
nw.201
nw.202
nw.203
...
what I'd like to do is be able to get specific values from all these
lists (like the mean of $RL) for each indivividual list. I can
certainly do this manually
mean(c(nw.201.1$RL,n...
2014 Oct 31
0
[PATCH 1/3] fish: rl.{c, h} - escaping functions for readline
From: Maros Zatko <mzatko@redhat.com>
---
fish/rl.c | 158 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
fish/rl.h | 32 +++++++++++++
2 files changed, 190 insertions(+)
create mode 100644 fish/rl.c
create mode 100644 fish/rl.h
diff --git a/fish/rl.c b/fish/rl.c
new file mode 100644
index 0000000..bb8fd62
--- /dev/null
+++ b/f...
2014 Jun 23
2
ListenAdress Exclusion
I was wondering what everyone's thoughts were on a simpler way to exclude
addresses from having listeners on them.
I know a lot of people have multiple subnets, especially larger
corporations.
Some networks are non-route-able, and therefor unsuitable for use with SSH,
aside from communication between other servers on the same subnet.
Given that we may want to exclude those non-route-able
2002 Feb 20
1
WinVC v1.11 released (bug fix for Europe)
European users that use a comma as a decimal point were experiencing a
BSOD (blue-screen-of-death) using the new OggInfo.exe support. This was
due to OggInfo.exe returning a period (.) in numbers regardless of
windows regional settings.
http://winvc.stationplaylist.com/WinVC.exe
Cheers,
Ross Levis.
<p>--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage:
2017 May 26
2
Severity of unpublished CVE-2017-2619 and CVE-2017-7494
Hi Team,
Please let me know the severity of CVE-2017-2619 and CVE-2017-7494.
Arjit Kumar
2014 Nov 13
4
[PATCH 0/4 v3] readline escaping functions
Helper functions for future support of backslash escaped spaces in filenames.
There are a few tests too. Changed according to review remarks and fixed few
other mistakes.
Maros Zatko (4):
fish: copy parse_quoted_string and hexdigit from fish.h to rl.c
fish: rl.{c,h} - escaping functions for readline
fish: basic tests for readline escaping
autotools: add fish/test
Makefile.am | 1 +
configure.ac | 1 +
fish/rl.c | 157 ++++++++++++++++++++++++++++++++++++++++++++++++
fish/rl.h | 25...
2014 Nov 07
3
[PATCH 0/3] v2 readline escaping functions
From: Maros Zatko <mzatko@redhat.com>
Helper functions for future support of backslash escaped spaces in filenames.
There are a few tests too. Changed according to review remarks.
Maros Zatko (3):
fish: rl.{c, h} - escaping functions for readline
fish: basic tests for readline escaping
autotools: add fish/test
Makefile.am | 1 +
configure.ac | 1 +
fish/rl.c | 158 ++++++++++++++++++++++++++++++++++++++++++++++++
fish/rl.h | 24 ++++++++
f...
2003 Aug 19
3
Is rl broken?
Greetings,
I cvsup'd and rebuilt a FreeBSD 4.8 system last Friday after receiving the
realpath security advisory. The machine is remote and the NIC uses the rl
driver. After booting the machine I had no network connectivity. The
person at the remote site says the boot was normal and he could see that the
NIC was properly configured but he could not ping it and I could not login.
We booted off kernel.old and everything came up fine.
I browsed the stable...
2014 Oct 31
6
[PATCH 0/3] WIP readline escaping functions
...m: Maros Zatko <hacxman@gmail.com>
Auxiliary functions for readline to support space character escaping
in filenames in future.
Escaping function is taken from fish.c (used to be parse_quoted_string)
plus its un-escaping counterpart. There are a few tests for both.
Maros Zatko (3):
fish: rl.{c,h} - escaping functions for readline
fish: basic tests for readline escaping
autotools: add fish/test
Makefile.am | 1 +
configure.ac | 1 +
fish/rl.c | 158 ++++++++++++++++++++++++++++++++++++++++++++++++
fish/rl.h | 32 ++++++++++...
2012 Jan 30
1
Problem in Fitting model equation in "nls" function
...ing "nls" function. I am always getting error message as i highlighted below in yellow color:
### Theexpo-linear equation which i am interested to fit my data:
response_variable = (c/r)*log(1+exp(r*(Day-tt))), where "Day" is time-variable
## my response variable
rl <- c(2,1.5,1.8,2,2,2.5,2.6,1.5,2.4,1.7,2.3,2.4,2.2,2.6,
2.8,2,2.5,1.8,2.4,2.4,2.3,2.6,3,2,2.6,1.8,2.5,2.5,
2.3,2.7,3,2.2,2.6,1.8,2.5,2.5,2.3,2.7,3,2.2)
myday <- rep(c(3,5,7,9,10), each = 8) # creating my predictor time-variable
mydata <- data.frame(rl,myda...
2017 May 26
2
Severity of unpublished CVE-2017-2619 and CVE-2017-7494
...>
> https://www.samba.org/samba/security/CVE-2017-7494.html
>
> For this second bug, I did some work on CVSS scores:
>
> I've had a go at a CVSSv3 score for the normal case here (password
> required to
> write to shares):
>
> AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H/E:F/RL:O/RC:C (8.2)
>
> https://nvd.nist.gov/vuln-metrics/cvss/v3-calculator?vector=AV:N/AC:L/P
> R:L/UI:N/S:U/C:H/I:H/A:H/E:F/RL:O/RC:C
>
> for the AD DC, assuming only sysvol/netlogon shares (which should be
> admin-only) but that administrator isn't root:
>
> AV:N/AC:L/PR:H/...
2012 Jan 31
4
problem in fitting model in NLS function
...my data using "nls" function. I am always getting error message as i highlighted below in yellow color:
Theexpo-linear equation which i am interested to fit my data:
response_variable = (c/r)*log(1+exp(r*(Day-tt))), where "Day" is time-variable
my response variable
rl <- c(2,1.5,1.8,2,2,2.5,2.6,1.5,2.4,1.7,2.3,2.4,2.2,2.6,
2.8,2,2.5,1.8,2.4,2.4,2.3,2.6,3,2,2.6,1.8,2.5,2.5,
2.3,2.7,3,2.2,2.6,1.8,2.5,2.5,2.3,2.7,3,2.2)
myday <- rep(c(3,5,7,9,10), each = 8) # creating my predictor time-variable
mydata <- data.frame(rl,myda...
2024 Oct 27
1
readLines on open connection reads only first write on MacOS
...is had no effect.
I have found an alternative, scan with skip of the number lines already read, and this
works on both Linux and MacOS. But I would still like to know how to have readLines work
with open connections on MacOS.
Regards,
Martin
## Program to demonstrate the behaviour
## input data
rL <- list(paste0("Line ", 1:4), paste0("Line ", 1:3), paste0("Line ", 1:2))
## create an empty file and open write and read connections to the file
close(file("rL.log",open="w"))
rLconn.w <- file("rL.log", open="a")
rLconn.r...
2019 Jun 03
2
FYI: LLVM Phabricactor notifications.
PaulR
(sorry again if this is known knowledge)
> There's no reason for Herald to be adding project LLVM/subscriber
llvm-commits at the last second here.
Its possible the rL (LLVM) had be added as the repository in the review on
creation rather than rCFE, if thats the case then the herald rule "H270" is
going to fire because it see the repository in the review, so add LLVM
project and llvm-commits as a subscriber automatically. It won't care that
this has...
2016 Oct 06
2
LoopVectorizer -- generating bad and unhandled shufflevector sequence
Hi,
I have experimented with enabling the LoopVectorizer for SystemZ. I have
come across a loop which, when vectorized, seems to have been poorly
generated. In short, there seems to be a completely unnecessary sequence
of shufflevector instructions, that doesn't get optimized away anywhere.
In other words, there is a shuffling so that leads back to the original
vector:
[0 1 2 3 4 5 6 7]
[0 4] [1 5] [2 6] [3 7]...