#ifelse
what's a "pipes" ?? #rstats
February 23, 2026 at 9:27 PM
You call it an ifelse statement, I call it a lightweight, agentic decision module operating within a deterministic inference framework
April 16, 2025 at 3:27 AM
waiting for the sequel to andor, ifelse
June 5, 2025 at 4:12 AM
Certain neckwear will help you find your way in the dark.

Screenshot by ifelse on Steam.
March 31, 2026 at 3:01 PM
Ooops broke R so bad I can't even quit the R session

(tried to run an ifelse() statement on a dataframe with 180 million rows, turns out that is not advised)
May 2, 2025 at 6:41 PM
The base #RStats pipe (`|>`) is so stupid cool.
April 5, 2025 at 7:15 PM
IFELSE anxp-T 10w12 So10/Sx7/Sx5 sukai sekai FEVL¹²³⁴ chaotic-nogood

вот кто я
May 3, 2026 at 12:40 AM
woah! can't wait for the air to get better
June 12, 2025 at 2:18 AM
A continuação em breve em IFELSE
Finally a show about Boolean logic operators
June 6, 2025 at 2:52 AM
Never gonna forget when someone came onto my GitHub and abused me in an issue because they thought I had misspelt “false” (I had written ifelse)
May 13, 2025 at 12:02 AM
coloca um if else nesse bagulho aí

if sigo
pode ver minhas postagens
ifelse
NÃO vai ver
Um dos desenvolvedores do Bluesky afirma que CONTAS PRIVADAS é um desafio muito grande e deve demorar para ser realidade.
September 8, 2024 at 4:44 PM
Never really liked the old-style anonymous functions using ~ and . and .x. New style makes much more sense to me.
#rstats
November 14, 2025 at 11:44 AM
My favorites from what I got:

- “Nested ifelse() builds character”
- "attach() gets a bad rap"
- "setwd() isn't that bad"
- "Excel is underrated"
Planning my next conversation starter
February 26, 2026 at 6:24 PM
I have scripted myself into an ifelse dungeon and am completely unable to find the key

Please send help (and probably more round brackets)

#rstats
February 5, 2025 at 7:12 AM
オメーただのifelseだろうがよ
September 25, 2024 at 6:23 AM
today I learnt case_when() is vectorized -- really powerful replacement for ifelse() or if_else() when you have complex buiness logic #rstats
May 26, 2025 at 6:57 PM
Gonna commit the same tier of crime as an endless set of ifelse statements but in Twine
October 16, 2025 at 11:59 AM
How do you use if, else, and switch in C++?
tpointtech.wordpress.com/2025/06/05/h...

#ifelsecpp #c++ifelse
June 6, 2025 at 7:06 AM
R is a flexible programming language. You can even shape function syntax to resemble other languages. Here is an example of a ternary style operator with infix functions—the same logic as ifelse. Is this something you need? Probably not. But it is fun to explore these ideas within your code. #RStats
February 3, 2026 at 3:48 AM
I have updated and improved the is.na() function in #Rstats.
You're welcome.

na.vibe.check <- function(x){
ifelse(table(is.na(x))["TRUE"]>0,
browseURL("https://tinyurl.com/muhjvec6"),
print("all good"))
}
September 20, 2025 at 5:16 PM
Leadwerks 5 Lua tutorial explaining how to use the "if", "else", and "ifelse" statements:
www.youtube.com/watch?v=JCUZ... #gamedev #indiedev #leadwerks #roblox #unity3d #unrealengine #godotengine
Leadwerks 5 Lua Tutorials: "if" Statements
YouTube video by Leadwerks Software
www.youtube.com
July 9, 2025 at 6:45 PM
Star Wars: Ifelse

is this anything
April 30, 2025 at 12:17 AM
Along with finishing Chapter 17 of #MoumantaiMF, the first chapter of the third season of Voyages of the Odyssey, the story written by @russet.mmfcomic.com is live!

mmfcomic.com/voyages/
April 14, 2026 at 5:15 PM
can do this
```r
`/` <- function(x, y) {
ifelse(y == 0, NA_real_, base::`/`(x, y))
}
```
or to be complient and not break code that may be using the `/` ' s definition

```r
`%/%` <- function(x, y) {
ifelse(y == 0, NA_real_, x / y)
}
```
and enjoy

```r

10 %/% 0
```
April 11, 2025 at 3:51 PM
#adventofcode #rstats day 11. tail recursion + memoization
December 11, 2024 at 7:02 PM