From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on ip-172-31-74-118.ec2.internal X-Spam-Level: X-Spam-Status: No, score=0.0 required=3.0 tests=BAYES_40,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.6 X-Received: by 2002:ad4:5cef:: with SMTP id iv15mr16017806qvb.82.1640629462328; Mon, 27 Dec 2021 10:24:22 -0800 (PST) X-Received: by 2002:a25:d086:: with SMTP id h128mr10876209ybg.646.1640629462087; Mon, 27 Dec 2021 10:24:22 -0800 (PST) Path: eternal-september.org!reader02.eternal-september.org!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Mon, 27 Dec 2021 10:24:21 -0800 (PST) In-Reply-To: <87sfue8a0v.fsf@bsb.me.uk> Injection-Info: google-groups.googlegroups.com; posting-host=78.141.135.179; posting-account=sDyr7QoAAAA7hiaifqt-gaKY2K7OZ8RQ NNTP-Posting-Host: 78.141.135.179 References: <7bede061-4b0f-4029-beb1-1056637e57d6n@googlegroups.com> <49538254-21ed-4fd0-8316-1bccc7d3c635n@googlegroups.com> <87sfue8a0v.fsf@bsb.me.uk> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <31332c61-a370-43a5-bbe0-efe338ee6d8fn@googlegroups.com> Subject: Re: Some advice required [OT] From: Laurent Injection-Date: Mon, 27 Dec 2021 18:24:22 +0000 Content-Type: text/plain; charset="UTF-8" Xref: reader02.eternal-september.org comp.lang.ada:63282 List-Id: On Monday, 27 December 2021 at 14:14:42 UTC+1, Ben Bacarisse wrote: > Laurent writes: > > > On Monday, 27 December 2021 at 12:16:27 UTC+1, Niklas Holsti wrote: > > > >> Sorry, but I found your problem description impossible to understand. > >> Try to describe more clearly the experiment that is done, the structure > >> of the data the experiment provides (the meaning of the Excel rows and > >> columns), and the statistic you want to compute. > > > > Sorry tried to keep it short, was too short. > > > > Columns are the antimicrobial drugs > > Rows are the microorganism. > > > > So every cell contains a result of S, I, R or simply an empty cell > > > > S = Sensible > > I = Intermediate > > R = Resistant > > > > empty cell > > > If a patient has 3 strains of the same microorganism but with > > different resistance profiles I have to find the most resistant > > one. Or if they are different I keep them all. > > > > I have no idea how to explain what I am doing to the compiler. > I think when you can explain it to people, you'll be able to code it. I > am still struggling to understand what you need. > > Why I would choose result from strain B over the result from strain A. > > > > strain A: SSSRSS > > strain B: SSRRRS > Let's space it out > > drug 1 drug 2 drug 3 drug 4 drug 5 drug 6 > strain A S S S R S S > strain B S S R R R S > > You want to choose B because it has is resistant to more drugs, yes? > Yes indeed > I think, from the ordering you give, you need a measure that treats an R > as "more important" that any "I" which is "more important" than an "S". > (We will come to empty cells later.) > > I think you need to treat the number of Rs, Is and Ss like digits in a > number. In base 10, the strains score > > R S I > strain A 1 5 0 = 150 > strain B 3 3 0 = 330 > > Now, in fact, you don't need to use base 10. The smallest base you can > use is one more than the maximum number of test results. If there can > be up to 16 tests (say) the score is > > n(R)*17*17 + n(S)*17 + n(I). > > If this suits your needs, we can consider empty cells later on. It's > not at all clear to me how to compare > > strain C R____ > strain D RRSSSS > > Strain C is "less resistant" but only because there is not enough > information. In fact it seems more serious as it is resistant to all > tested drugs. > Strain C is probably garbage and I would remove it. With a bit of luck I will have the result with the same sample Id which would be complete. > And then what about > > strain D SR > strain E RS > Yes those are the cases which are annoying me. That's why I came up withe idea of multiplying the value of the result (S=1, I=2 and R=3) with the position of the value. Tried it with triplets but there will still be cases where different results will give the same numeric value. Ignoring empty cells for the moment. Strain F: SSR (1*1+2*1+3*3) =12 and Strain G: RRS (1*3+ 2*3+3*1) = 12 will be the same numerical value but they are different resistance profiles I would in this case keep both. How to prevent that from happening. The results are way longer than only 3 values so the possibilities for collisions are higher. R R R R R S R R R S S S R S S => numeric:1812180608 R R R R R S R R R R S S S S S => numeric:1812180806 I have to keep both and that was an easy one. Only 2 to compare not 5. A lot of R in common, only 2 differences. Ok now I have the same result in an other representation. Still no idea how to explain to the compiler why they are different. > Do you need to weight the drugs to break ties? I.e. is drug x more > important than drug y if x < y? > > -- > Ben. Yes there is a hierarchy in the drugs but that information is not available in the exported results I work with. I know that because it is part of my formation as medical technical assistant in a lab. I was hoping to not have to recreate some form of expert system. Thanks Laurent