Displaying 20 results from an estimated 557 matches for "1.20".
Did you mean:
1.00
2008 Jan 18
1
Selecting rows conditionally between 2 data.frames
Hello everyone,
I have two data.frames that look like
calib:
place zoom scale
left 0.65 8
left 0.80 5.6
left 1.20 3
right 0.65 8.4
right 0.80 6
right 1.20 2.9
X:
... place zoom ....
... left 0.80 ....
... left 1.20 ....
... right 0.65 ....
... NA NA ....
... right 0.8 ....
... left 1.20 ....
and I want to get the corresponding values of 'scale' in a new column
2019 Oct 07
3
MATE 1.20 test build for CentOS 7 available
Hi everyone,
There's been discussions in the past about updating MATE RPMs in EPEL-7:
https://bugzilla.redhat.com/show_bug.cgi?id=1436260
https://lists.centos.org/pipermail/centos/2019-August/173154.html
(and lots of others...)
As a proof-of-concept, I've written some scripts that clone specific
commits from the Fedora master branches, and then runs a tool to
re-apply RPM scriptlets
2012 Nov 10
1
The road to libguestfs 1.20
I've got some bad news: libvirt remote support is probably not going
to make libguestfs 1.20. John Eckersberg is diligently working on
this, but I don't want to hold up the release of the next stable
libguestfs for this, particularly since it needs dependent changes in
libvirt.
The last stable branch of libguestfs (1.18) happened in the middle of
May. That's 7 months ago, making
2006 Apr 07
2
Announcing Astmanproxy 1.20
Greetings everyone,
I'm pleased to announce the release of Astmanproxy 1.20, the fast,
flexible proxy server for Asterisk's Manager Interface. Astmanproxy
allows you to communicate with multiple Asterisk boxes from a single point
of contact using a variety of I/O formats, now including support for
XML, HTTP, HTTPS, SSL, CSV, and the Asterisk-native standard format.
Astmanproxy is
2001 Apr 01
3
Which are the steps to apply a Ext3 file system?
Im intending use Ext3 file system in my web farm.
Im using RedHat 6.2 (kernel 2.2.16-3) and Turbo Linux Cluster Server 6.0.
I have NO SUCCESS in path my own kernel.
I downloaded the following ext3 packages:
ext3-0.0.2f.tar.gz (linux-2.2.16-3.kdb.diff , linux-2.2.16-3.ext3.diff )
e2fsprogs-1.20-0.WIP.i386.rpm
e2fsprogs-1.20-0.WIP.src.rpm
e2fsprogs-1.20-0ext3.i386.rpm
2021 Aug 27
2
MATE 1.20 test build for CentOS 7 available
On 8/27/21 1:50 PM, wwp wrote:
> Hello Greg,
>
>
> On Mon, 7 Oct 2019 09:06:23 -0700 Greg Bailey <gbailey at lxpro.com> wrote:
>
>> There's been discussions in the past about updating MATE RPMs in EPEL-7:
>> https://bugzilla.redhat.com/show_bug.cgi?id=1436260
>> https://lists.centos.org/pipermail/centos/2019-August/173154.html
>> (and lots of
2012 Dec 11
2
Final plan for libguestfs 1.20
Once I've finished Windows dynamic disk (ldm) support[1], which should
happen later today, I'm going to release libguestfs 1.20.
(Unless someone shouts loudly now!)
Please take a look at the updated release notes here:
https://github.com/libguestfs/libguestfs/blob/master/guestfs-release-notes.txt
Also note I am going to be on vacation for the first two weeks of
January 2013.
Rich.
[1]
2021 Sep 03
1
MATE 1.20 test build for CentOS 7 available
On 09/03/2021 02:36 AM, Szabo Akos via CentOS wrote:
> On Thu, 2021-09-02 at 16:07 -0400, H wrote:
>> On 08/28/2021 07:51 PM, H wrote:
>>> On August 28, 2021 7:27:13 PM EDT, isdtor <isdtor at gmail.com> wrote:
>>>> H writes:
>>>>>> Thanks for your quick response! I'll try building from the
>>>>>> sourceswhile I'm stuck
2021 Sep 02
3
MATE 1.20 test build for CentOS 7 available
On 08/28/2021 07:51 PM, H wrote:
> On August 28, 2021 7:27:13 PM EDT, isdtor <isdtor at gmail.com> wrote:
>> H writes:
>>>> Thanks for your quick response! I'll try building from the sources
>>>> while I'm stuck with C7 :-).
>>>>
>>>>
>>>> Regards,
>>> I have an interest in the latest version of Mate for
2020 Apr 30
1
Anything for nbdkit 1.20? / ddrescue filter latest version?
Eric: Even though it's only been about 2 months, we have a very good
feature set for nbdkit 1.20. Is there anything you'd like to get in
or any patches I have missed?
Francois: you mentioned the ddrescue filter yesterday. While I don't
want to put in a new filter right before we do a release (new features
need to sit around in development so we can uncover bugs), if you do
have
2012 Dec 13
0
Release notes appendix for libguestfs 1.20 on Debian Wheezy
I'm just about to release libguestfs 1.20. I want to cover some
things that are different or won't work as well in Debian Wheezy.
** Most important ** Debian Wheezy ships with febootstrap 3.17. This
is too old to run libguestfs 1.20 out of the box (febootstrap >= 3.20
required). However if you apply the attached patch to libguestfs,
then it will work with the older febootstrap.
2017 Dec 14
1
match and new columns
Hi Bill,
I put stringsAsFactors = FALSE
still did not work.
tdat <- read.table(textConnection("A B C Y
A12 B03 C04 0.70
A23 B05 C06 0.05
A14 B06 C07 1.20
A25 A23 A12 3.51
A16 A25 A14 2,16"),header = TRUE ,stringsAsFactors = FALSE)
tdat$D <- 0
tdat$E <- 0
tdat$D <- (ifelse(tdat$B %in% tdat$A, tdat$A[tdat$B], 0))
tdat$E <- (ifelse(tdat$B %in% tdat$A, tdat$A[tdat$C], 0))
2017 Dec 13
2
match and new columns
Thank you Rui,
I did not get the desired result. Here is the output from your script
A B C Y D E
1 A12 B03 C04 0.70 0 0
2 A23 B05 C06 0.05 0 0
3 A14 B06 C07 1.20 0 0
4 A25 A23 A12 3.51 1 1
5 A16 A25 A14 2,16 4 4
On Wed, Dec 13, 2017 at 4:36 PM, Rui Barradas <ruipbarradas at sapo.pt> wrote:
> Hello,
>
> Here is one way.
>
> tdat$D <- ifelse(tdat$B %in% tdat$A,
2012 Dec 13
3
Release notes appendix for libguestfs 1.20 on Fedora 18
I'm just about to release libguestfs 1.20. This appendix covers
issues specific to Fedora 18.
Fedora 18 defaults to using the libvirt attach-method, meaning that
libvirt is used to create and manage the libguestfs appliance. There
are several benefits to this (see the full release notes). You can
switch back to the ordinary method (directly running qemu) at any time
by doing:
export
2017 Dec 13
3
match and new columns
Hi all,
I have a data frame
tdat <- read.table(textConnection("A B C Y
A12 B03 C04 0.70
A23 B05 C06 0.05
A14 B06 C07 1.20
A25 A23 A12 3.51
A16 A25 A14 2,16"),header = TRUE)
I want match tdat$B with tdat$A and populate the column values of tdat$A
( col A and Col B) in the newly created columns (col D and col E). please
find my attempt and the desired output below
Desired output
2012 Feb 21
1
Questions on Data reading using zoo package
Hello,
I try to handle the data using read.csv , zoo and aggregate functions.
The data contains NA values. After aggregating monthly data into quarterly
data, all data become NA. Is it because I don't properly aggregate the data
in the presence of NAs? What can I do?
Another problem is that the date in month is presented in Chinese (My OS
is in Chinese.) How can I set the default
2020 May 02
0
ANNOUNCE: nbdkit 1.20 - high performance NBD server
I'm pleased to announce the release of nbdkit 1.20, a high performance
plugin-based Network Block Device (NBD) server.
https://en.wikipedia.org/wiki/Network_block_device
Key features of nbdkit:
* Multithreaded NBD server written in C with good performance.
* Minimal dependencies for the basic server.
* Liberal license (BSD) allows nbdkit to be linked to proprietary
libraries or
2011 Apr 14
0
CESA-2011:0281 Important CentOS 5 i386 java-1.6.0-openjdk Update
CentOS Errata and Security Advisory 2011:0281 Important
Upstream details at : https://rhn.redhat.com/errata/RHSA-2011-0281.html
The following updated files have been uploaded and are currently
syncing to the mirrors: ( md5sum Filename )
i386:
8c41f018e84a431787974af33e9ddea3 java-1.6.0-openjdk-1.6.0.0-1.20.b17.el5.i386.rpm
b8ee010d2751e3255f05bd6f6e5c1e14
2011 Apr 14
0
CESA-2011:0281 Important CentOS 5 x86_64 java-1.6.0-openjdk Update
CentOS Errata and Security Advisory 2011:0281 Important
Upstream details at : https://rhn.redhat.com/errata/RHSA-2011-0281.html
The following updated files have been uploaded and are currently
syncing to the mirrors: ( md5sum Filename )
x86_64:
97386ce721455300f6b2a32d78fd68d4 java-1.6.0-openjdk-1.6.0.0-1.20.b17.el5.x86_64.rpm
3674890ad60f2407c8c5669767d46739
2010 Jun 04
1
How do I 'merge' a altered subset of a data.frame back into the same data.frame
Hi
Step 1: I create a data.frame called iolm.
Step 2: I create a conditional subset i_wtr.
Step 3: In this subset I add 0.3 to all values in the IOLM_AST column.
Step 4: Now I am looking for the best way to Œmerge¹ the altered subset back
into the original iolm data.frame
## STEP 1
>iolm
ID IOLM_AST IOLM_AXIS
1 1 1.15 165.33
2 2 1.20 79.00
3 3 0.40