Displaying 20 results from an estimated 20 matches for "b06".
Did you mean:
06
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))
tdat
I got this,
A B C Y D E
1 A12 B03 C04...
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, tdat$A[tdat$B], 0)
> tdat$E <- ifelse(tdat$B %in% tdat$A,...
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
A B C Y D E
A12 B03...
2017 Dec 14
0
match and new columns
...CO Software
wdunlap tibco.com
On Wed, Dec 13, 2017 at 3:02 PM, Val <valkremk at gmail.com> wrote:
> 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, tdat$A...
2017 Dec 13
0
match and new columns
...tdat$A[tdat$B], 0)
tdat$E <- ifelse(tdat$B %in% tdat$A, tdat$A[tdat$C], 0)
Hope this helps,
Rui Barradas
On 12/13/2017 9:36 PM, Val wrote:
> 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
>...
2010 Apr 12
2
Problems running a Java program in Wine
...e console, On Windows XP, the same program and JVM version runs perfectly. Here Is the the message:
#
# An unexpected error has been detected by Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x104f66b6, pid=47, tid=42
#
# Java VM: Java HotSpot(TM) Client VM (1.6.0_01-b06 mixed mode)
# Problematic frame:
# C [Rbuildj.dll+0x266b6]
#
# An error report file with more information is saved as hs_err_pid47.log
#
# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jsp
#
The file hs_err_pid47.log says:
#
# An unex...
2005 Sep 06
3
CentOS 4.1 - 'Older' JVM Issues
Hi
Just installing a machine to replace our dev server.
Currently the dev server runs many different JVM versions depending on
the app the developer is working on. Some of these require older
versions of java.
Newer versions work fine out of the box, eg 1.4.x however i'm running
into the following issue when trying to run apps against 1.3.1_02 which
i have to be able to run on this box
2013 May 24
0
Problem After adding Bricks
...ransport-type: tcp
Bricks:
Brick1: fs01:/bricks/b01
Brick2: fs02:/bricks/b01
Brick3: fs01:/bricks/b02
Brick4: fs02:/bricks/b02
Brick5: fs01:/bricks/b03
Brick6: fs02:/bricks/b03
Brick7: fs01:/bricks/b04
Brick8: fs02:/bricks/b04
Brick9: fs01:/bricks/b05
Brick10: fs02:/bricks/b05
Brick11: fs01:/bricks/b06
Brick12: fs02:/bricks/b06
Brick13: fs01:/bricks/b07
Brick14: fs02:/bricks/b07
Brick15: fs01:/bricks/b08
Brick16: fs02:/bricks/b08
Brick17: fs01:/bricks/b09
Brick18: fs02:/bricks/b09
Brick19: fs01:/bricks/b10
Brick20: fs02:/bricks/b10
Brick21: fs01:/bricks/b11
Brick22: fs02:/bricks/b11
Options Recon...
2007 Mar 07
4
wine: could not load L"D:\\Setup.exe": Bad EXE format for
Just trying to setup an application to run educational material from a CD
the software is /SkillSoft Course Manager (SCM)
I searched the internet for a solution but did not find anything useful.
/I just installed wine and have IE6 working for testing purposes.
Any hints? Ideas? solutions?
Would be wonderful. Never used wine before.
Phil
2005 Jul 27
1
unable to source a .R file using RJava
.../tools/app/R-2.1.1/lib/R/library/stats/libs/stats.so
0xfc430000 /tools/app/R-2.1.1/lib/R/library/methods/libs/methods.so
Local Time = Wed Jul 27 12:37:24 2005
Elapsed Time = 5
#
# The exception above was detected in native code outside the VM
#
# Java VM: Java HotSpot(TM) Client VM (1.4.1_02-b06 mixed mode)
#
# An error report file has been saved as /tmp/hs_err_pid22533.log.
# Please refer to the file for further information.
#
Abort
using ./RJava --example --gui-none to invoke source core dumps.
---------------------------------------------------------------
[omegahat->R] source (&qu...
2011 May 25
0
issues with rJava; cannot run JRI example
....0, 2.0, 3.0};
re.assign("a", d);
after the line above and try to run again it shows me following error messages:
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6c731a9e, pid=5152, tid=492
#
# JRE version: 6.0_25-b06
# Java VM: Java HotSpot(TM) Client VM (20.0-b11 mixed mode windows-x86 )
# Problematic frame:
# C [R.dll+0x31a9e]
#
# An error report file with more information is saved as:
# C:\Documents and Settings\ajayami\My Documents\NetBeansProjects\JAVA_R\hs_err_pid5152.log
#
# If you would like to submit...
2012 Feb 07
0
rJava load failure, 64-bit R, 64-bit Java, R 2.14.1 (works fine on R 2.12.2 64-bit, same computer)
...he package "rJava" for 64-bit R 2.14.1. It appears that the problem is specific (for my system) to this version of R. I had no trouble loading rJava on an earlier version (2.12.2) of R.
N:\>java -version
java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)
I used the following to install rJava:
install.packages('rJava', .libPaths()[1], 'http://www.rforge.net/')
> library(rJava)
Error : .onLoad failed in loadNamespace() for 'rJava', details:
call: inDL(x, as...
2005 Jul 27
0
core dump when call t.test via the "RJava --example --gui-none" interface
.../R-2.1.1/lib/R/library/methods/libs/methods.so
Local Time = Wed Jul 27 12:28:07 2005
Elapsed Time = 28
#
# HotSpot Virtual Machine Error : 11
# Error ID : 4F530E43505002E6 01
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.4.1_02-b06 mixed mode)
#
# An error report file has been saved as /tmp/hs_err_pid22520.log.
# Please refer to the file for further information.
#
Abort
2018 Sep 27
1
Failed to get to installer for CentOS 7 VM under CentOS 6...
On Thu, 27 Sep 2018, Robert Heller wrote:
> I just tried a CentOS 7 install to a laptop over PXE and it failed in just the
> same way as for the VM.
>
> So, is it not possible to install CentOS 7 via PXE? Or is there something
> missing? I just copied the images under os/x86_64/images/ to the tftpd
> directory (/var/lib/tftpboot/) and included in
>
2012 Nov 09
3
Installing Java 7 on a system with Java 6
My system is 5.6, with upgrades. I installed Java 6 from the Centos
repository. It doesn't seem to have Java 7. I need the development
package. How can I install Java 7 development safely? I imagine I will
first have to uninstall Java 6.
Thanks,
John
--
John J. Boyer; President, Chief Software Developer
Abilitiessoft, Inc.
http://www.abilitiessoft.com
Madison, Wisconsin USA
Developing
2003 Apr 07
1
Problems building the java/jdk14 port
...ntering directory `/v0/pobj/r+d/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486_compiler2/product'
#
# HotSpot Virtual Machine Error, Internal Error
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Client VM (1.4.1_02-b06 mixed mode)
#
# Error ID: 4F533F4C494E55580E43505002D7
#
gmake[2]: *** [../generated/MakeDeps.class] Abort trap (core dumped)
gmake[2]: Leaving directory `/v0/pobj/r+d/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486_compiler2/product'
gmake[1]: *** [product] Error 2
gmake...
2007 Sep 14
8
Cortado java applet
I looking for a simple way to use cortado java applet
on my website, help
---------------------------------
Sick of deleting your inbox? Yahoo!7 Mail has free unlimited storage. Get it now.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.xiph.org/pipermail/theora/attachments/20070915/2df326af/attachment.htm
2017 Jun 21
0
DRS stopped working after upgrade from debian Jessie to Stretch
...ne 64, in __init__
> options=ldb_options)
> File "/usr/lib/python2.7/dist-packages/samba/__init__.py",
> line 115, in __init__
> self.connect(url, flags, options)
>
> .. Next check..
> Running : samba-tool drs showrepl
> Failed to bind to uuid e3514235-4b06-11d1-ab04-00c04fc2dcd2
> for
> ncacn_ip_tcp:172.16.0.20[1024,seal,target_hostname=fichdc.net.
> lyc-guillaume-fichet.ac-grenoble.fr,abstract_syntax=e3514235-4
> b06-11d1-ab04-00c04fc2dcd2/0x00000004,localaddress=172.16.0.20]
> NT_STATUS_LOGON_FAILURE
> ERROR(<class 'samba...
2017 Jun 21
4
DRS stopped working after upgrade from debian Jessie to Stretch
21.06.2017 11:45, L.P.H. van Belle via samba пишет:
> I suggest before you upgrade do a very good read here.
>
> https://wiki.samba.org/index.php/Updating_Samba#Notable_Enhancements_and_Changes
>
> https://wiki.samba.org/index.php/Samba_Features_added/changed_(by_release)
> And a summerize version for with all parameter changes as of upgrade from 4.2 up to 4.6
>
2005 Dec 21
9
question about changejournal
Hi,
I''ve got a newbie question--sorry if this is covered elsewhere, I parsed
through the archives for awhile and didn''t see it.
I''d like to listen for whenever a file is renamed (e.g. foo.txt -> foo.old)
and then magically change it back. This sounds odd, but I''m working with a
stubborn application and this will actually make things work nice.
So, if I do: