Re: [R] Mailinglist

2019-01-09 Thread PIKAL Petr
to elaborate your results further and it is always good to have appropriately structured results. Cheers Petr From: Rachel Thompson Sent: Tuesday, January 8, 2019 4:24 PM To: PIKAL Petr Cc: r-help mailing list Subject: Re: [R] Mailinglist Hi Thank you for your help and suggestions! I have tried

Re: [R] Mailinglist

2019-01-08 Thread Richard M. Heiberger
please post a sample dataset based on mydata <- rbind[participant1[1:3,], participant2[1:4,], participant3[1:5,]) I think mydata at this point is anonymized enough that you can post it. Verify with whomever, though. You might want to change those random U* names of the participants to

Re: [R] Mailinglist

2019-01-08 Thread Rachel Thompson
> > of your data. The best way from your side would be just copy a part of > your > > data directly to email and preferable way is to use "dput". > > > > Assuming your data already transfered to R are called "mydata". > > > > You can just copy otput

Re: [R] Mailinglist

2019-01-08 Thread Rachel Thompson
ur data already transfered to R are called "mydata". > > You can just copy otput of > > dput(mydata[1:30,]) > > to your next mail. > > Cheers > Petr > > > > -Original Message- > > From: R-help On Behalf Of Rachel Thompson > > Sent: S

Re: [R] Mailinglist

2019-01-08 Thread Rachel Thompson
Hi Thank you for your help and suggestions! I have tried a few things and ask help from lots of people online! My problem is that I am not able to share the database! I tried to recreate one but I wasn't successful. So I found a way to analyze each subject individually, but I do not know how to

Re: [R] Mailinglist

2019-01-08 Thread Rachel Thompson
Hi Thank you for your help and suggestions! I have tried a few things and ask help from lots of people online! My problem is that I am not able to share the database! I tried to recreate one but I wasn't successful. So I found a way to analyze each subject individually, but I do not know how to

Re: [R] Mailinglist

2019-01-07 Thread PIKAL Petr
gt; > > > -Original Message- > > From: R-help On Behalf Of Rachel > > Thompson > > Sent: Sunday, January 6, 2019 7:49 PM > > To: Rich Shepard > > Cc: r-help mailing list > > Subject: Re: [R] Mailinglist > > > > Hi Rich, > > >

Re: [R] Mailinglist

2019-01-07 Thread Hasan Diwan
> > > -Original Message- > > From: R-help On Behalf Of Rachel Thompson > > Sent: Sunday, January 6, 2019 7:49 PM > > To: Rich Shepard > > Cc: r-help mailing list > > Subject: Re: [R] Mailinglist > > > > Hi Rich, > > > > I re

Re: [R] Mailinglist

2019-01-07 Thread PIKAL Petr
data". You can just copy otput of dput(mydata[1:30,]) to your next mail. Cheers Petr > -Original Message- > From: R-help On Behalf Of Rachel Thompson > Sent: Sunday, January 6, 2019 7:49 PM > To: Rich Shepard > Cc: r-help mailing list > Subject: Re: [R] Mail

Re: [R] Mailinglist

2019-01-06 Thread K. Elo
Hi! Not having a data chunk prevents me from testing abit, but maybe you should take a look on: ?table ?xtabs to start with. But as already suggested by other users, a small data set would be of great help :) HTH, Kimmo su, 2019-01-06 kello 13:49 -0500, Rachel Thompson kirjoitti: > Hi Rich,

Re: [R] Mailinglist

2019-01-06 Thread Richard M. Heiberger
Questions like this 1. I want to have a summary of how many times a specific subject got called (CallLogProbe) suggest that you should look at the table function. See ?table and run the examples. They show how to get one-way frequency tables and two-way contingency tables. If you have followup

Re: [R] Mailinglist

2019-01-06 Thread Rich Shepard
On Sun, 6 Jan 2019, Rachel Thompson wrote: I need a code that helps me count the phone activity level(high/low/none), the screen activity (on/off) and the amount calls and SMS of each subject. 1. I want to have a summary of how many times a specific subject got called (CallLogProbe) 2. I want

Re: [R] Mailinglist

2019-01-06 Thread Hasan Diwan
Maybe you could put the CSV in a gist or something? -- H On Sun, 6 Jan 2019 at 10:58, Rachel Thompson wrote: > Hi Rich, > > I really feel lost at this point. > I need a code that helps me count the phone activity level(high/low/none), > the screen activity (on/off) and the amount calls and SMS

Re: [R] Mailinglist

2019-01-06 Thread Rachel Thompson
Hi Rich, I really feel lost at this point. I need a code that helps me count the phone activity level(high/low/none), the screen activity (on/off) and the amount calls and SMS of each subject. 1. I want to have a summary of how many times a specific subject got called (CallLogProbe) 2. I want to

Re: [R] Mailinglist

2019-01-06 Thread Rachel Thompson
Hi Rui, Thank you, I willl look into it. Best, Rachel On Sun, Jan 6, 2019 at 12:27 PM Rui Barradas wrote: > Hello, > > In many continental European countries, such as mine, the function to > use is > > read.csv2 > > It defaults to > > sep = ";", dec = "," > > Note that these functions are

Re: [R] Mailinglist

2019-01-06 Thread Rui Barradas
Hello, In many continental European countries, such as mine, the function to use is read.csv2 It defaults to sep = ";", dec = "," Note that these functions are in fact calls to read.table with special default arguments. Another default that changes is header = TRUE. You might also want to

Re: [R] Mailinglist

2019-01-06 Thread Rich Shepard
On Sun, 6 Jan 2019, Rachel Thompson wrote: I am an intern from Amsterdam and I have to do an analysis in R. I spoke to my professor in Amsterdam and my supervisor's here in Boston. But they are to busy to help. I informed them from the start that I am not familiar with R(Rstudio) and they told

Re: [R] Mailinglist

2019-01-06 Thread Rachel Thompson
Hi Michael Thanks, I'll check it out. Best, Rachel On Sun, Jan 6, 2019 at 11:45 AM Michael Dewey wrote: > Dear Rachel > > Not sure if this is going to help but if it is a csv file then > read.csv() is your friend. Read the help first in case you need to > specify what is being used for the

Re: [R] Mailinglist

2019-01-06 Thread Michael Dewey
Dear Rachel Not sure if this is going to help but if it is a csv file then read.csv() is your friend. Read the help first in case you need to specify what is being used for the decimal point and the separator as if it is from the Netherlands they may not be the default settings. michael On

Re: [R] Mailinglist

2019-01-06 Thread Rachel Thompson
Hi Jeff, Thanks for your email. I am an intern from Amsterdam and I have to do an analysis in R. I spoke to my professor in Amsterdam and my supervisor's here in Boston. But they are to busy to help. I informed them from the start that I am not familiar with R(Rstudio) and they told me that I

Re: [R] Mailinglist

2019-01-06 Thread Rachel Thompson
Hi Jim, Thank you for your email and information It is a CVS file which I imported in Rstudio. I will look into what you told me and see if I am able to figure it out. Best, Rachel On Sun, Jan 6, 2019 at 4:12 AM Jim Lemon wrote: > Hi Rachel, > It looks to me as though the first thing you

Re: [R] Mailinglist

2019-01-06 Thread Jeff Newmiller
I would not want to leave the impression that I think the task at hand is merely tedious... my point is that there are numerous steps involved and each step depends on information that has not been communicated to the list, and there is a learning curve even in knowing what to include in an

Re: [R] Mailinglist

2019-01-06 Thread Jim Lemon
Hi Rachel, It looks to me as though the first thing you want to do is to get your data, which you attach as images, into a data frame. If these are flat files like CSV or TAB, you should be able to read them in with some variant of the read.table function. If Excel, look at the various Excel

Re: [R] Mailinglist

2019-01-05 Thread Jim Lemon
Hi Rachel, I'll take a guess and assume that you are monitoring the mobile phones of 36 people, adding an observation every time some specified change of state is sensed on each device. I'll also assume that you are only recording four types of measurement. It seems that you want to aggregate

Re: [R] Mailinglist

2019-01-05 Thread Jeff Newmiller
Not really. This is R-help, not R-do-my-work-for-me. You need to make enough progress in doing your work that you can ask a focused question about how to do some step of your work in R before your query will be answerable on this mailing list. Once you have started your work you will have some

[R] Mailinglist

2019-01-05 Thread Rachel Thompson
Dear Mr/Mrs, This is my first time working in R studio. I have a database of 36 participants but it has 150600 entries. Column - Column - Column- Column Participant Activityprobe - Activity Level - High/low/none Participant Screenprobe - screenon/off -

[R] Mailinglist; get a copy of all own messages

2009-04-29 Thread Martin Batholdy
Hi, I tried to change my settings of the mailing-list, so that I get my own message again from the mailing-list. But it doesn't work - I don't get a copy of my own email. Does anyone know how you can change that? thanks for any help! __

Re: [R] Mailinglist; get a copy of all own messages

2009-04-29 Thread Sarah Goslee
It's gmail, not the mailing list. Gmail stores your mailing list messages under Sent mail and I at least haven't found any way to convince it to filter them or store them elsewhere. If you reply to an earlier message, your reply should appear in the proper place, but there doesn't seem to be any

Re: [R] Mailinglist; get a copy of all own messages

2009-04-29 Thread Sarah Goslee
Even if you have the mailing list options set so that you are sent copies of your own posts, gmail hides them for you. http://groups.google.com/group/Gmail-Help-Message-Delivery-en/browse_thread/thread/e7716ab04941c383?pli=1 It has nothing to do with the mailing list manager. The original