@Rami_Krispin The key part of the integration to me is that we will each work on some tasks over time that are more traditionally considered to be part of the other group’s domain. In pairing on complex task we also share knowledge about our stack and individual approaches.
@Rami_Krispin I work on a cross-functional team that includes a mix DSs and DEs. The SMEs for parts of our stack define scope. We share and refine the scope together and pull from the same board. Usually I get a more DS-oriented task. Sometimes it’s more DE. Pairing is also a team norm.
@JasminePlows I think environment management and more object oriented code development were among the steepest learning curves at first. That and the fact that I still miss that R natively vectorizes operations and “base” Python does not.
@JasminePlows This was me two years ago. Recommended tools:
- PyCharm for software development
- Jupyter Lab for analysis
- Learning to use conda / venv for environment management
Books:
- Python Programming: An Introduction to Computer Science
- Fluent Python
@ajshackman In an ideal world, I am team Alex. In the “real” world, I am team Luiz. Honestly though, my biggest concern is the “value add” of the cover letter is the signaling of who I am / who I know. I wish I was less cynical. I also wish the world was less terrible.
@PessoaBrain@SolomonKurz@Nate__Haines Big fan of the treatment these topics get in @rlmcelreath's text (https://t.co/VTT0JCbWi0). See ch.'s 13 & 14 in particular (ulam wrapper does a nice job of mapping math notation to syntax). For those more familiar with lme4 syntax in R - can also look @paulbuerkner's brms 📦
You can't placate extremists by agreeing to their demands, inviting them at the table, giving them more power. They will always end up explosively turning on you. They're defined by perpetual hostility, not by a specific set of reasonable goals and values you could compromise on.
@NicoleBarbaro Thanks for sharing and for pushing the publisher to think about what they are offering. “Most reviewers do these things out of interest” may be totally valid but it is also a reason I suspect many academics undervalue their time when asked to do tasks like this.
@pdakean Once you get to modeling techniques like SEM or MLM you are talking about such a range of applications that a solid foundation is really the only attainable goal whether it is a semester long course or a 3-day workshop.
@pdakean Short answer no, IMO. Poor statistics in publications are multiply caused. I see cutting off avenues to gaining foundational knowledge as way more problematic than any potential harm caused by the truncated treatment of a complex topic.
@andybaxter Haha. I started going down exactly that path. Cracked open my Advanced R text even and couldn’t make heads or tails of my options. My hope was the Internet has solved this somehow and I am just shitty at entering search terms. Plan to revisit the C/Primitve stuff this week.
So I am trying to figure out if there is a way to make something like f-strings happen in #R. Is there a way I can make a custom `f` "built-in" function? I want these to do the same thing:
f"{some_var} rest of string"
glue("{some_var} rest of string)"
#rstats#DataScience