Displaying 4 results from an estimated 4 matches for "adeepak".
Did you mean:
deepak
2017 Jun 22
4
Question
Hi,
I am using Spark and the Sparklyr library in R.
I have a file with several lines. For example
A B C
awer.ttp.net Code 554
abcd.ttp.net Code 747
asdf.ttp.net Part 554
xyz.ttp.net Part 747
I want to split just column A of the table and I want a new row added to the table D, with values awe, abcd, asdf, and xyz. I am trying to use a command in
2017 Jun 22
1
Question
This function won?t work with objects in spark as you can?t do a dfda$a in spark as it?s not stored as a local variable.
Thanks,
Amrith
> On Jun 22, 2017, at 4:15 PM, David Winsemius <dwinsemius at comcast.net> wrote:
>
>
>> On Jun 22, 2017, at 11:22 AM, Amrith Deepak <adeepak at apple.com> wrote:
>>
>> Hi,
>>
>> I am using Spark and the Sparklyr library in R.
>>
>> I have a file with several lines. For example
>>
>> A B C
>> awer.ttp.net Code 554
>> abcd.ttp.net Code...
2017 Jun 22
0
Question
> On Jun 22, 2017, at 11:22 AM, Amrith Deepak <adeepak at apple.com> wrote:
>
> Hi,
>
> I am using Spark and the Sparklyr library in R.
>
> I have a file with several lines. For example
>
> A B C
> awer.ttp.net Code 554
> abcd.ttp.net Code 747
> asdf.ttp.net Part 554
&g...
2017 Jun 22
0
Question
...urfile", header=TRUE, as.is=TRUE )
dta2 <- dta
dta2$D <- c( "awe", "abcd", "asdf", "xyz" )
dta2 <- dta2[ , c( "A", "D" ) ]
--
Sent from my phone. Please excuse my brevity.
On June 22, 2017 11:22:57 AM PDT, Amrith Deepak <adeepak at apple.com> wrote:
>Hi,
>
>I am using Spark and the Sparklyr library in R.
>
>I have a file with several lines. For example
>
>A B C
>awer.ttp.net Code 554
>abcd.ttp.net Code 747
>asdf.ttp.net Part 554
>xyz.ttp.net...