Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm quite new to R and on of my biggest challenges is still how to properly handle my data in R. Until now I just stored tables I had outside of R (e.g. csv's) as data.frames in R (this was most obvious to me),- but as I expirienced lately (using the plyr package) it may be better to store the data.frames aditionally inside lists, for example when I want to apply functions over several dataframes or produce several Outputs from a function in R (still dind't get that one right).

I think especially when I want to automize my work by creating functions this question might become crucial.

I know that R and all the packages have a good documentation, still I would appreciate to do some tutorials on basic data structures, the environment and how to handle my data in R. I've been working with R for three months now so I don't need to start it all over again. Tutorials for maybe semi-advanced users or tutorials that go deeper into this question would be interesting.

I'm getting to know R and statistical programming learning by doing and I can't visit a class at the univeristy or something like that. So any advice on good online tutorials would be warmly apreciated.

share|improve this question
3  
This type of question is not a good fit for this site, and will likely be closed. For example: Books for learning the R language, and Understandable documentation about R?. – Joshua Ulrich Jan 21 at 21:35
1  
@Joshi After 3 months of R, it is time to do some serious things..Try to solve an entire problem using R...I think it is better than any advanced tutorial. – agstudy Jan 21 at 21:40
@agstudy I'm actually working on my serious things since the very first day I used R but lately I tried to automate all my analysis and I got stuck taking various Inputs into my functions and producing various Outputs. Some things I just can't get them done, for example producing multiple Outputs. Therefore I thought it would be good to get to know more about data structures...I think I'll try to edit my question above and be more specific. – Joschi Jan 21 at 21:50
@Joschi I think you need to learn using functions. Try to learn how to create your own functions. and encapsulate your script in a small function..Once you get the basic template it is easy to automatize all your process. – agstudy Jan 21 at 21:56
@Joschi for multiple return values you should use either a data.frame or a list. – Paul Hiemstra Jan 21 at 22:05
show 3 more comments

closed as not constructive by David Robinson, joran, agstudy, Matthew Plourde, Paul Hiemstra Jan 21 at 22:02

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.