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

In R: I have a matrix with one column classified by 8 types: a, b, c, d, e, f, g, h. I need to do different computations for each type using the data in the other columns. I want to use a switch() function to automate the looping through each type and state the difference calculations for each type; HOWEVER, everything I am seeing online only shows examples of the syntax for one line switch computations for each switch.

Here is an example using the code provided in the switch() help. I know that mean() is a function, but let's just say for this example, that it isn't a function, because I just want to illustrate that I do not know the syntax (and it's not clearly stated in my research online):

centre <- function(x, type) {
  switch(type,
     mean = {
           total.sum<-sum(type)
           mean = total.sum/length(type)
     },
     median = median(x),
     trimmed = mean(x, trim = .1))
}
share|improve this question
3  
There's a number of ways to do this. Maybe if you expanded your question, preferably with a reproducible example we might be of more help. – Roman Luštrik Jun 26 '12 at 6:42
3  
This will be much more likely to be answered if you provide something reproducible and your efforts toward a solution. – mnel Jun 26 '12 at 6:42
2  
Just use braces {...} to wrap your multiple lines of code for each statement – Andrie Jun 26 '12 at 6:52
1  
While I agree that more detail in the question would remove ambiguity, @Andrie 's comment is sufficient for the question posed. – Carl Witthoft Jun 26 '12 at 11:54
please see revised question for sample code to illustrate my confusion. – user1481829 Jun 27 '12 at 0:00
show 1 more comment

1 Answer

up vote 1 down vote accepted

I think the miscommunication is coming from a typo in your example:

 mean = {
       total.sum<-sum(type)
       mean = total.sum/length(type)
 },

should be

 mean = {
       total.sum<-sum(x)
       mean = total.sum/length(x)
 },

If you make this change, it behaves exactly how you would expect it to.

ETA: I'm not sure what the issue is in your comment. Please try the following code:

set.seed(1)

centre <- function(x, type) {
  switch(type,
     mean = {
           total.sum<-sum(x)
           mean = total.sum/length(x)
     },
     median = median(x),
     trimmed = mean(x, trim = .1))
}

x <- rcauchy(10)
print(centre(x, "mean"))
print(centre(x, "median"))
print(centre(x, "trimmed"))

The output is:

[1] -0.4844658
[1] -0.236111
[1] -0.3632328
share|improve this answer
Well the syntax still has to be wrong because when I run the code with this correction, and then use the fucntion, I get the following: 'x <- rcauchy(10) > centre(x, "mean") > centre(x, "median") [1] 0.3268971 > centre(x, "trimmed") [1] 1.677625' – user1481829 Jun 27 '12 at 4:20
See edit for a reproducible example; and let me know if that doesn't work. – David Robinson Jun 27 '12 at 4:40
For some reason when I made the correction (which I tried to show by embedding code, and the site wouldn't let me hit enter without submitting it). The problem I was having was that it wasn't producing a result. Since you showed me yours, and I ran it, the problem seems to be resolved. THANKS! – user1481829 Jun 27 '12 at 8:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.