About Me
I am newly retired and eagerly exploring my next chapter! You can follow along in this journey at My Next Chapter blog.
Previously, I was a journalist and data professional equally at home analyzing data, coding tools for journalists, and covering technology. My most recent paid job was director of editorial data & analytics at Foundry (an IDG Inc. company), which publishes tech Web sites including Computerworld, CIO, PCWorld, and Macworld. I was also author and host of InfoWorld's Do More With R series. I still occasionally freelance for Computerworld and InfoWorld.
My book, Practical R for Mass Communication and Journalism, is available from publisher CRC Press and Amazon (you can see Six chapters free online).
I've taught workshops for ProPublica, the New England First Amendment Coalition, and at Investigative Reporters and Editors conferences. And, I keynoted the 2020 European R User Meeting.
I received an ASBPE national gold award for impact/investigative online excellence (see story), a 2023 Neal Award for best instructional content, and two ASBPE national golds for best how-to articles (see 2014 and 2017 winners). I was also named the Digital Analytics Association's top practitioner in 2021.
I hold an Extra-class ham radio license and was honored by the Association of Radio Amateurs of Bosnia & Herzegovina "for extraordinary contribution to transmitting humanitarian messages of the citizens of Bosnia-Herzegovina" during the 1992-95 war.
My other hobbies include photography, travel, hiking, snowshoeing, crocheting, and classical piano. And, I'm somewhat obsessed with both generative AI and the R programming language.
You can follow me on Bluesky at https://bsky.app/profile/smachlis.bsky.social, Mastodon at @smach@masto.machlis.com and my searchable app with my Mastodon posts, and on LinkedIn.
My Recent InfoWorld and Computerworld Articles
Analyze text using natural language with Claude for Google Sheets 2024-12-17
Create searchable Bluesky bookmarks with R 2024-12-09
FAQ: Getting started with Bluesky 2024-12-09
Shiny for Python adds chat component for generative AI chatbots 2024-07-23
Maker of RStudio launches new R and Python IDE 2024-06-24
5 easy ways to run an LLM locally 2024-03-28
How to run R in Visual Studio Code 2024-02-15
Posit lays off R Markdown, knitr creator Yihui Xie 2024-01-05
8 ChatGPT tools for R programming 2023-12-21
Anthropic's Claude 2.1 LLM turbocharges performance, offers beta tool use 2023-11-21
My Data-Related Mastodon Posts
Learned today: Don't play around with the rig R package *on your live Linux cloud server* if you don't know what you're doing.
Make a copy of the server and go through the pain of updating R server-wide and reinstalling a zillion packages.
Sigh. (At least I can restore from a backup) #Rstats (2025-05-10 16:03:46) >>
The latest dev version of the {ellmer} #RStats 📦has functions to list available large language models. Some results also have pricing info. New functions start with models_: models_anthropic(), models_openai(), models_ollama() etc.
Install with pak::pak("tidyverse/ellmer")
#GenAI (2025-05-09 18:28:20) >>
@jeroenooms 🤣 I know someone who had a bad experience with R in college and now just hates it. No matter how much I try to change her mind. It seems that telling students "No copying and pasting any code! You must re-type arcane base R code from scratch so you'll (supposedly) better understand it!" is not a great way to get people enthused about a programming language . (2025-05-09 17:27:22) >>
dplyr's pick() function lets you select columns *within select(), count(), or mutate() activities *. For ex.
df %>% mutate(rank = dense_rank(pick(x, y)))
OR
df %>% count(pick(starts_with("z")))
https://dplyr.tidyverse.org/reference/pick.html
#RStats #TidyVerse #R (2025-05-09 12:09:54) >>