Displaying 20 results from an estimated 1300 matches similar to: "Splitting one column value into multiple rows"
2011 Jul 20
4
R on Multicore for Linux
Hi all,
I have R installed on a box, which is running on a machine with 16 core and
Redhat - Linux. I am handling huge (size of dataset will be 5 GB) dataset.
Lets assume that my data is in the form of structured (multiple) logs. I
access the data by using all.files(). Since by default basic version of R
utilizes single core, the processing of my analysis code is taking too much
time. I got to
2011 Jul 25
2
Binding multiple data frames into single data frame
Hi all,
I have multiple data frames created with equal number of columns in each
data frame by using mclapply() on multicore processor. The data frames are
like DF[[1]], DF[[2]], ... DF[[150]]. Now i want to bind (Similar like
rbind()) all these data frames and create one single data frame called DF so
that i can have the complete data for further analysis. Can someone help me
in performing this
2012 Aug 02
1
Joining R Local Dataset with Table from Database
Hi All,
I want to join a table (Dataset) that is created in R with a table that is
in oracle database. Can some one help me in accomplishing this task in R?
Example Code:
library(RODBC)
DB_CONNECT <- odbcConnect("DSN_NAME")
TABLE_JOIN <- sqlQuery(DB_CONNECT, "SELECT * FROM DB_TABLE WHERE COL_1 NOT
IN (SELECT COL_1 FROM DATA_SET_R) ")
Regards,
Madana
--
View this
2012 Sep 20
1
SQL query with Multicore option on R -linux
Hi all,
I have the following sql query that I am executing on a machine with single
core. I want to know how can I execute the same sqery on a maching that is
running with 4 cores. Please provide me the code.
NEW_TABLE <- rhive.query("SELECT A, B, COUNT(C) FROM TABLE_A WHERE
A>='01-01-2012'")
Also let me know how can I leverage only 2 / 3 cores of the machine.
2006 Feb 23
2
Working with lists with numerical names
Greetings!
I'm have a hard time working with some data I imported from a baseball
database. Several of the database columns have numbers in them (2B,
3B), and when I try to use these vectors from the data frame, I get
syntax errors, probably because it's interpreting the name as a number:
> show(batting2005)
playerID yearID stint teamID lgID G AB R H 2B 3B HR RBI SB CS BB
2019 Apr 26
5
Accessing Android phones on CentOS 7
Hi,
My standard Linux desktop is based on a personal blend of CentOS 7 with
KDE 4.14 and various add-ons from third-party repositories like EPEL and
Nux-Dextop. After a brief stint on OpenSUSE Leap 15.0, this is what I
use on my workstation and on my laptop. And this is also what I install
on my client's machines, just like I did in our local school's computer
room.
I'm currently
2002 Sep 27
1
ugh, continued ldap madness, cont'd
After a brief stint offlist (thanks Bradley), I'm closer to getting
SMB/LDAP working but now am encountering something very odd, which he
suggested I bring back to the list for "further evaluation". :-)
> $ smbclient //TESTBOX/testshare -U dballing
> added interface ip=10.15.49.142 bcast=10.15.49.255 nmask=255.255.255.0
> Password:
> session setup failed:
2020 Oct 02
3
Lahman Baseball Data Using R DBI Package
I?m trying to pull data from one table (batting) in the Lahman Baseball database. Notice X2B for doubles and X3B for triples ? fourth and fifth from the right.
The dbGetQuery function runs fine when I leave there two out but I get error messages (in red) when I include 2B/3B or X2B/X3B.
Can anyone give me some direction?
Thanks,
Philip Heinrich
2005 Jul 31
1
Questions on Asterisk and CallerID
Hello,
I have few questions about Asterisk.
I installed Asterisk from CVS on FreeBSD and I made cvsup 2 days ago.
1.I couldn't find Asterisk version using "asterisk -V" command.
How can I to find version information?
2.I am using Wildcard X101P (FXO) and Wildcard TDM400P REV E/F (FXS)on
it.
I tried Asterisk CallerID feature, but unable to get it.
I tried callerid signaling V23,
2020 Oct 03
1
Lahman Baseball Data Using R DBI Package
The double quotes are required by SQL if a name is not of the form
letter-followed-by-any-number-of-letters-or-numbers or if the name is a SQL
keyword like 'where' or 'select'. If you are doing this from a function,
you may as well quote all the names.
-Bill
On Fri, Oct 2, 2020 at 6:18 PM Philip <herd_dog at cox.net> wrote:
> The \?2B\? worked. Have no idea why. Can
2020 Oct 08
0
Lahman Baseball Data Using R DBI Package
Hi Philip,
You've probably realized by now that R doesn't like column names that
start with a number. If you try to access an R-dataframe column named
2B or 3B with the familiar "$" notation, you'll get an error:
> library(DBI)
> library(RSQLite)
> con2 <- dbConnect(SQLite(), "~/R_Dir/lahmansbaseballdb.sqlite")
> Hack12Batting <-
2009 May 05
1
Working with R from Remote desktop
Hi Friends,
Kindly let me know whether is it possible to install R project in a Server
(Remote) desktop, which can be accessed by many users by logging in with
their credentials...
Another concern is if i want to work with huge dataset (millions of records)
what should be the system configuration? (currently i am getting an error :
Cannot allocate vector of size 16.7 Mb)
Regards,
Madana
--
View
2009 Oct 27
1
WAR file installation
Hi Friends,
Currently i am using R-2.9.1. I am new to R and i am in learning stage.
Can any one tell me whether R allows WAR file installation?
Other concerns i have are:
1. Does R allows WAR file installation?
2. Does R has a web server or application server concept?
3. Can we create login credentials in R?
Kindly clarify these things...
Regards,
Madana
--
View this message in context:
2020 Oct 08
1
Lahman Baseball Data Using R DBI Package
This is really a feature of SQL, not R. SQL requires that you double quote
column names that start with numbers, include spaces, etc., or that are SQL
key words. E.g.,
> d <- data.frame(Order=c("sit","stay","heel"),
Where=c("here","there","there"), From=c("me","me","you"))
>
2005 Aug 26
1
bridging sip to capi, no playtones back to caller
I've the following setup :
sip phone -> ser (auth and routing) -> asterisk with capi isdn
when I call a pstn number everything works fine, but I can't hear
anything till the called answer.
this is the output from a test call :
-- Executing Playtones("SIP/2.7.184.61-08152880", "dial") in new stack
-- Executing Dial("SIP/2.7.184.61-08152880",
2012 Sep 19
2
Help reproducing a contour plot
Hi All,
I am trying to reproduce this using R instead.
[image: Full-size image (38 K)]
I tried using the following code
*SChla <- read.csv("SM_Chla_data.csv")*
*Atlantis <- SChla[16:66,]*
*head(Atlantis)*
*
*
Seamount Station Depth Pico Nano Micro Total_Ch dbar Latitude
Longitud
16 Atlantis 1217 Surface 0.0639 0.1560 0.0398 0.2597 2.082 -32.71450
57.29733
2007 Nov 14
0
9 commits - libswfdec/swfdec_as_string.c libswfdec/swfdec_color_as.c libswfdec/swfdec_interval.c test/image test/trace
libswfdec/swfdec_as_string.c | 31 +++---
libswfdec/swfdec_color_as.c | 9 -
libswfdec/swfdec_interval.c | 2
test/image/.gitignore | 2
test/trace/Makefile.am | 27 +++++
test/trace/array2-8.swf |binary
test/trace/array2-8.swf.trace | 40 ++++++++
2007 Apr 18
0
Have you seen how these sub-one-cent companies take off on
Good News? For the past two months, every one we have
brought you has shown Amazing Appreciation.
At such a low price even the smallest Gain means a
Significant Percentage Return.
We called (P)(P)(T)(L) as one to watch on Friday because of a
Highly Anticipated Report from the Field. It moved up 13%
on Friday and the news
2011 Feb 15
0
New Puppet Labs Employee: Randall Hansen
I''m happy to announce we''ve recently added Randall Hansen as our
Director of User Experience at Puppet Labs.
He''s on IRC as ''soh'', and in his own words...
I got hooked on human-computer interaction in 1986, writing Pascal
programs to help dad navigate a Tandy 1000SX. I followed a twisty
path through engineering school to get a degree in English and
2007 Apr 18
0
Have you seen how these sub-one-cent companies take off on
Good News? For the past two months, every one we have
brought you has shown Amazing Appreciation.
At such a low price even the smallest Gain means a
Significant Percentage Return.
We called (P)(P)(T)(L) as one to watch on Friday because of a
Highly Anticipated Report from the Field. It moved up 13%
on Friday and the news