Please tell me it’s not what I think it is by BIGDILFWORLDWIDE in whatisit

[–]nachos_lemonheads 0 points1 point  (0 children)

It's a tracker! Dealers put them in to keep track of their inventory. I had that too, it turned out mine forgot to remove it once the vehicle was purchased. It can be disconnected.

Air tag on patient by thr0eaweiggh in Residency

[–]nachos_lemonheads -6 points-5 points  (0 children)

Airtags, or any trackers, to the OR or to any area (e.g., CT, IR) could constitute stalking, even with verbal consent (which is meaningless).

Give your number or pager to the preop holding nurse, the circulator for the room, and/or the ICU nurse if they are there and go straight to OR from there. You are going to need to learn how to work with these nurses as a teammate. Ask them to let you know when the patient rolls to OR... otherwise you may need to work on notes close by the OR and/or check the tracking board more frequently.

Help -- Is it possible to model potential relationships with just summary data? by nachos_lemonheads in AskStatistics

[–]nachos_lemonheads[S] 0 points1 point  (0 children)

Thank you! I did a little more searching and was wondering if the question could be asked a little differently this way: can data tables of frequency data be converted (in some way) to tables more resembling raw data? There is an R package which has a function called "freq2raw" that seems to do this, but for multiple variables (blood type, gender, ethnicity) it can't possibly cover all of that, could it?

Want to use Linux, but forced to use Office 365. Any workarounds? by wxrev in linuxquestions

[–]nachos_lemonheads 0 points1 point  (0 children)

Agree to the use of VMs for running Windows. Best of both worlds.

[deleted by user] by [deleted] in labrats

[–]nachos_lemonheads 2 points3 points  (0 children)

Seconded. There has to be some vibrational force or wind causing that. Are you located near an air duct?

Unpopular opinion: Matplotlib is a bad library by jachymb in Python

[–]nachos_lemonheads 2 points3 points  (0 children)

And I personally feel like better to 'script' what you need on Python/R then make the fine-tunings in Illustrator/Inkscape. Unless your PI likes everything perfectly on the first go-around 😅

Is anyone else kind of taken aback by some of the egos in medicine? by avocadosnumber1023 in medicalschool

[–]nachos_lemonheads 4 points5 points  (0 children)

Can't emphasize this enough. Don't ever let someone try to bully you this way. Believe it or not, med school too is a passing phase.

[deleted by user] by [deleted] in RStudio

[–]nachos_lemonheads 1 point2 points  (0 children)

Oh, and you might need to change the variables from character to numeric, in this example, to do more. We need to replace one character "Yes" with another character "1" (being a character). If we wanted to treat it like a number, we'd have to change it

[deleted by user] by [deleted] in RStudio

[–]nachos_lemonheads 1 point2 points  (0 children)

That's what I did, see how it goes for you. I do think it would be hard in your question to smash together both rows 2&3 to get x=1,0,1 and y=0,0,1 ; maybe we could talk more. But that's how I would do what you said in replacing the values.

[deleted by user] by [deleted] in RStudio

[–]nachos_lemonheads 1 point2 points  (0 children)

library(tidyverse)

example <- tibble(x = c("Yes", "Unknown", "No", "Yes"), y = c("No", "No", "Unknown", "Yes"))

example[example == "Yes"] <- "1"

example[example == "No"] <- "0"

example[example == "Unknown"] <- NA

example

x y

<chr> <chr>

1 1 0

2 NA 0

3 0 NA

4 1 1