rkevinburton_at_charter.net wrote:
> I have a command that reads in some data:
>
> x <- read.csv("Sales2007.dat", header=TRUE)
>
> Then I try to organize the data:
>
> sc <- split(x, list(x$Category, x$SubCategory), drop=TRUE)
>
> Then I want to iterate through the data. I was able to get the following to run on the R console:
>
> for(i in 1:length(sc))
> {
> sum(sc[[i]]$Quantity)
> }
>
> But notiing is primted on the console. I find that:
>
> for(i in 1:100)
> {
> i
> }
>
> Also does't output anything? I am probably making a wrong assumption here. Why desn't the loop seem to output anyything?
>
> Thank you.
Entering an expression interactively behaves differently than entering one in the context of another statement or function.
See the FAQ:
-- --------------------------------------------------------------------------- Jeff Newmiller The ..... ..... Go Live... DCN:<jdnewmil_at_dcn.davis.ca.us> Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/Batteries O.O#. #.O#. with /Software/Embedded Controllers) .OO#. .OO#. rocks...1k ______________________________________________ R-help_at_r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.Received on Tue 15 Jul 2008 - 17:58:02 GMT
Archive maintained by Robert King, hosted by
the discipline of
statistics at the
University of Newcastle,
Australia.
Archive generated by hypermail 2.2.0, at Tue 15 Jul 2008 - 18:31:54 GMT.
Mailing list information is available at https://stat.ethz.ch/mailman/listinfo/r-help. Please read the posting guide before posting to the list.