I am so looking forward to a new version of FoxTail with new content!
I hope you are well considering the circumstances.
@rkiel.bsky.social
Wir sind eine Gruppe in Kiel (organisiert von Claus H. Godbersen, https://rkiel.de), um Lust und Frust über R zu teilen und gemeinsam Lösungen zu finden. In diesem Kanal gibt es Posts zu R, unserer Gruppe, empirischer Wissenschaft allgemein und OpenSource.
I am so looking forward to a new version of FoxTail with new content!
I hope you are well considering the circumstances.
Heute habe ich die ersten Flyer für die Kieler R-Gruppe an der Uni ausgehängt. Bin gespannt, ob sie bemerkt werden und/oder der Bedarf da ist.
27.02.2026 21:04 — 👍 0 🔁 0 💬 0 📌 0
That theory, I am afraid, has no predictive power whatsoever. 🥴
You might have to introduce at least two sub-categories of regret and see if there is any correlation between your regrets and getting a request or getting no request.
S3
S4
Reference Classes
R6
#rstats
🤣
25.02.2026 19:03 — 👍 1 🔁 0 💬 1 📌 0
Can anyone tell me how popular R is in medical research by now - especially compared to SAS?
I heard SAS had been dominant in medical research so far.
Mit "system", "system2" und "shell" gibt es mindestens drei Arten, ein R-Programm mit dem Betriebssystem und/oder anderen Anwendungen interagieren zu lassen.
Wenn eine davon nicht funktioniert, lohnt es sich, auch die anderen zwei auszuprobieren.
Already another strip? Yaaayyy!!!
13.02.2026 13:51 — 👍 0 🔁 0 💬 0 📌 0
A minute? That's nothing!
I personally shudder to think how many hours of my life I have spent so far on pondering logic and researching error messages, while there was simply a typo in my code.
Gerade erstmals eine Liste aus Funktionen auf einen Dataframe df angewendet:
funcs <- list(
function(x) { mach dies mit x },
function(x) { mach das mit x }
)
lapply( X = funcs, FUN = function(x) { x(df) } ).
Und wieder die üblichen Fragen:
Ist es nützlich? Vielleicht.
Ist es cool? Sowasvon!
Ich lerne gerade tcltk, eine Bibliothek für grafische Oberflächen.
Sieht zwar standardmäßig nicht so shiny wie Shiny aus, aber ist in mancher Hinsicht einfacher.
Wenn man auch für andere Leute Programme schreibt, sind ein paar Eingabefenster für Parameter oder Dateien vielleicht echt nützlich.
Personally, I would love her upper arms to be a bit thicker. I know it is fantasy art, but still.
Anyway: Really well done and really beautiful!
Simplification of anatomy is a concept I, as a hobby artist, keep struggling with even after years. And it is done really well here, indeed.
03.02.2026 20:58 — 👍 1 🔁 0 💬 0 📌 0🤣
03.02.2026 20:48 — 👍 1 🔁 0 💬 1 📌 0
Habe gerade herausgefunden, dass es auch mit rbind geht, wenn man die anzuhändenden Daten auch als Dataframe behandelt - auch wenn es nur eine Zeile ist:
df <- data.frame(
id = integer(),
name = character()
)
df <- rbind(df, data.frame("id" = 1, "name" = "Claus"))
Der Vollständigkeit halber.
dplyr::bind_rows funktioniert, danke.
Witzigerweise habe ich es mit rbind auch mit einem named vector versucht; brachte nur nichts.
Nein, ich brauche nicht zwinged rbind. Fände es nur komisch, wenn es mit Basis-R unmöglich wäre.
Wenn ich einem leeren Dataframe mit rbind eine Zeile hinzufüge, gehen die Spaltennamen verloren.
Kennt jemand das Problem und vielleicht sogar eine Lösung?
Can you recommend any introductory material to parquet?
21.01.2026 22:04 — 👍 0 🔁 0 💬 1 📌 0"Intriguing" might be a better word for it, indeed.
20.01.2026 23:03 — 👍 1 🔁 0 💬 0 📌 0Among other ideas, Leo Strauss thought that many famous books had a hidden agenda because they were written in times of censorship and/or persecution. That's why his students also started searching his works for his hidden agenda. 🙄
19.01.2026 23:07 — 👍 1 🔁 0 💬 1 📌 0There was this guy called Leo Strauss, who worked in Chicago and had very peculiar ideas about what is "political philosophy". He took inspiration from Plato and is said to have influenced a few thinkers in the US - especially at the university of Chicago.
19.01.2026 23:03 — 👍 3 🔁 0 💬 1 📌 0Russell Hardin, interesting... Chicago has always been an exciting - and somewhat obscure - school of political science.
19.01.2026 22:11 — 👍 0 🔁 0 💬 1 📌 0What are you reading?
19.01.2026 21:15 — 👍 0 🔁 0 💬 1 📌 0
Gerade wieder gelesen, dass es auch den selten benötigten Operator <<- gibt, um aus Funktionen heraus ohne Nutzung des Rückgabewertes eine globale Variable zu verändern.
Nicht wirklich gute Praxis, aber manchmal ein willkommener Strohhalm.
And was the the only thing the AI did? Or did it actually help you?
11.01.2026 20:04 — 👍 0 🔁 0 💬 0 📌 0
scientific journal : Zeitschrift
lecture : Vorlesung
applied science : angewandte Wissenschaft
So "internal function" would be the term? Sounds good to me. Thank you!
10.01.2026 17:41 — 👍 0 🔁 0 💬 0 📌 0
Weiß jemand, ob es einen Fachbegriff für die Funktionen gibt, die man durch Functionals wie apply aufruft?
Also in apply(X = df, MARGIN = 2, FUN = mean) wäre es mean, was ich meine.