Hi R users, I want to find multiple modes (10, 8, 149) for the following vector. freq =1,2,5,5 10,4,4,8,1,1,8,8,2,4,3,1,2,1,1 138 149 14,1,1; any suggestion? Thank you, Ding ---------------------------------------------------------------------- ------------------------------------------------------------ -SECURITY/CONFIDENTIALITY WARNING- This message and any attachments are intended solely for the individual or entity to which they are addressed. This communication may contain information that is privileged, confidential, or exempt from disclosure under applicable law (e.g., personal health information, research data, financial information). Because this e-mail has been sent without encryption, individuals other than the intended recipient may be able to view the information, forward it to others or tamper with the information without the knowledge or consent of the sender. If you are not the intended recipient, or the employee or person responsible for delivering the message to the intended recipient, any dissemination, distribution or copying of the communication is strictly prohibited. If you received the communication in error, please notify the sender immediately by replying to this message and deleting the message and any accompanying files from your system. If, due to the security risks, you do not wish to receive further communications via e-mail, please reply to this message and inform the sender that you do not wish to receive further e-mail from the sender. (LCP301) ------------------------------------------------------------ [[alternative HTML version deleted]]
Hi Ding, Translating this into R code: freq<-c(1,2,5,5,10,4,4,8,1,1,8,8,2,4,3,1,2,1,1,138,149,14,1,1)> table(freq)freq 1 2 3 4 5 8 10 14 138 149 8 3 1 3 2 3 1 1 1 1> library(prettyR) > Mode(freq)[1] "1" You have a single modal value (1). If there were at most two ones, you would have three values (2,4,8) that could be considered multiple modes. What you seem to be doing is considering values that are not separated by commas as modes. Perhaps this is a formatting problem with your email. Jim On Mon, Mar 16, 2020 at 7:55 AM Yuan Chun Ding <ycding at coh.org> wrote:> > Hi R users, > > I want to find multiple modes (10, 8, 149) for the following vector. > > freq =1,2,5,5 10,4,4,8,1,1,8,8,2,4,3,1,2,1,1 138 149 14,1,1; > > any suggestion? > > Thank you, > > Ding > > ---------------------------------------------------------------------- > ------------------------------------------------------------ > -SECURITY/CONFIDENTIALITY WARNING- > > This message and any attachments are intended solely for the individual or entity to which they are addressed. This communication may contain information that is privileged, confidential, or exempt from disclosure under applicable law (e.g., personal health information, research data, financial information). Because this e-mail has been sent without encryption, individuals other than the intended recipient may be able to view the information, forward it to others or tamper with the information without the knowledge or consent of the sender. If you are not the intended recipient, or the employee or person responsible for delivering the message to the intended recipient, any dissemination, distribution or copying of the communication is strictly prohibited. If you received the communication in error, please notify the sender immediately by replying to this message and deleting the message and any accompanying files from your system. If, due to the security risks, you do not wish to rec > eive further communications via e-mail, please reply to this message and inform the sender that you do not wish to receive further e-mail from the sender. (LCP301) > ------------------------------------------------------------ > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > 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.
Ding,
Perhaps I am missing something. First, if you know the modes, why do you need to
look for them? Second, I don?t believe the modes are as you stated, 10, 8, and
149.
John
Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows
10
From: Yuan Chun Ding<mailto:ycding at coh.org>
Sent: Sunday, March 15, 2020 4:55 PM
To: r-help mailing list<mailto:r-help at r-project.org>
Subject: [R] find multiple mode
Hi R users,
I want to find multiple modes (10, 8, 149) for the following vector.
freq =1,2,5,5 10,4,4,8,1,1,8,8,2,4,3,1,2,1,1 138 149 14,1,1;
any suggestion?
Thank you,
Ding
----------------------------------------------------------------------
------------------------------------------------------------
-SECURITY/CONFIDENTIALITY WARNING-
This message and any attachments are intended solely for the individual or
entity to which they are addressed. This communication may contain information
that is privileged, confidential, or exempt from disclosure under applicable law
(e.g., personal health information, research data, financial information).
Because this e-mail has been sent without encryption, individuals other than the
intended recipient may be able to view the information, forward it to others or
tamper with the information without the knowledge or consent of the sender. If
you are not the intended recipient, or the employee or person responsible for
delivering the message to the intended recipient, any dissemination,
distribution or copying of the communication is strictly prohibited. If you
received the communication in error, please notify the sender immediately by
replying to this message and deleting the message and any accompanying files
from your system. If, due to the security risks, you do not wish to rec
eive further communications via e-mail, please reply to this message and inform
the sender that you do not wish to receive further e-mail from the sender.
(LCP301)
------------------------------------------------------------
[[alternative HTML version deleted]]
______________________________________________
R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://nam03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fstat.ethz.ch%2Fmailman%2Flistinfo%2Fr-help&data=02%7C01%7C%7C147c639f891e4753d10908d7c923312d%7C717009a620de461a88940312a395cac9%7C0%7C0%7C637199025303882146&sdata=2393RLv1pAKFVoOGyObIlOg6yBSttf%2FH59GhqqFU3oA%3D&reserved=0
PLEASE do read the posting guide
https://nam03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.R-project.org%2Fposting-guide.html&data=02%7C01%7C%7C147c639f891e4753d10908d7c923312d%7C717009a620de461a88940312a395cac9%7C0%7C0%7C637199025303882146&sdata=oQhNDMGv2XpTCUpZlCg5brpFJtZ4ZrvfcHVmeXWJmHU%3D&reserved=0
and provide commented, minimal, self-contained, reproducible code.
[[alternative HTML version deleted]]
Hello,
There is StackOverflow question on mode finding [1].
There is also a RPubs post, with the following now rewritten as a function.
Mode <- function(x){
y <- table(x)
names(y)[which(y == max(y))]
}
Mode(freq)
#[1] "1"
is.na(freq) <- freq == 1
Mode(freq)
#[1] "2" "4" "8"
[1]
https://stackoverflow.com/questions/2547402/is-there-a-built-in-function-for-finding-the-mode
[2] https://rpubs.com/mohammadshadan/meanmedianmode
Hope this helps,
Rui Barradas
?s 20:55 de 15/03/20, Yuan Chun Ding escreveu:> Hi R users,
>
> I want to find multiple modes (10, 8, 149) for the following vector.
>
> freq =1,2,5,5 10,4,4,8,1,1,8,8,2,4,3,1,2,1,1 138 149 14,1,1;
>
> any suggestion?
>
> Thank you,
>
> Ding
>
> ----------------------------------------------------------------------
> ------------------------------------------------------------
> -SECURITY/CONFIDENTIALITY WARNING-
>
> This message and any attachments are intended solely for the individual or
entity to which they are addressed. This communication may contain information
that is privileged, confidential, or exempt from disclosure under applicable law
(e.g., personal health information, research data, financial information).
Because this e-mail has been sent without encryption, individuals other than the
intended recipient may be able to view the information, forward it to others or
tamper with the information without the knowledge or consent of the sender. If
you are not the intended recipient, or the employee or person responsible for
delivering the message to the intended recipient, any dissemination,
distribution or copying of the communication is strictly prohibited. If you
received the communication in error, please notify the sender immediately by
replying to this message and deleting the message and any accompanying files
from your system. If, due to the security risks, you do not wish to rec
> eive further communications via e-mail, please reply to this message and
inform the sender that you do not wish to receive further e-mail from the
sender. (LCP301)
> ------------------------------------------------------------
>
> [[alternative HTML version deleted]]
>
> ______________________________________________
> R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see
> 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.
>
I think people have misinterpreted the question. The OP wants local maxima from the series. The original series is frequencies, so your table is frequencies of frequencies. A solution can be derived by looking at signs of the first and second differences. But there may be a simpler way???? On Mon, Mar 16, 2020 at 10:24 AM Jim Lemon <drjimlemon at gmail.com> wrote:> > Hi Ding, > Translating this into R code: > > freq<-c(1,2,5,5,10,4,4,8,1,1,8,8,2,4,3,1,2,1,1,138,149,14,1,1) > > table(freq) > freq > 1 2 3 4 5 8 10 14 138 149 > 8 3 1 3 2 3 1 1 1 1 > > library(prettyR) > > Mode(freq) > [1] "1" > > You have a single modal value (1). If there were at most two ones, you > would have three values (2,4,8) that could be considered multiple > modes. What you seem to be doing is considering values that are not > separated by commas as modes. Perhaps this is a formatting problem > with your email. > > Jim > > On Mon, Mar 16, 2020 at 7:55 AM Yuan Chun Ding <ycding at coh.org> wrote: > > > > Hi R users, > > > > I want to find multiple modes (10, 8, 149) for the following vector. > > > > freq =1,2,5,5 10,4,4,8,1,1,8,8,2,4,3,1,2,1,1 138 149 14,1,1; > > > > any suggestion? > > > > Thank you, > > > > Ding > > > > ---------------------------------------------------------------------- > > ------------------------------------------------------------ > > -SECURITY/CONFIDENTIALITY WARNING- > > > > This message and any attachments are intended solely for the individual or entity to which they are addressed. This communication may contain information that is privileged, confidential, or exempt from disclosure under applicable law (e.g., personal health information, research data, financial information). Because this e-mail has been sent without encryption, individuals other than the intended recipient may be able to view the information, forward it to others or tamper with the information without the knowledge or consent of the sender. If you are not the intended recipient, or the employee or person responsible for delivering the message to the intended recipient, any dissemination, distribution or copying of the communication is strictly prohibited. If you received the communication in error, please notify the sender immediately by replying to this message and deleting the message and any accompanying files from your system. If, due to the security risks, you do not wish to r > ec > > eive further communications via e-mail, please reply to this message and inform the sender that you do not wish to receive further e-mail from the sender. (LCP301) > > ------------------------------------------------------------ > > > > [[alternative HTML version deleted]] > > > > ______________________________________________ > > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > > 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. > > ______________________________________________ > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > 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.