Skip to main content

Hey! Free money!

This just came in:

On Dec 27, 2017, at 6:55 PM, **@gmail.com wrote:

My name is ** and I am a freelance writer hoping to contribute my writing to andrewgelman.com. I would be willing to compensate you for publishing.

For my posts, I require one related client link within the body of my article, as well as no “guest” or “Sponsored” tag on the post. I am willing to offer $50 per post published on the site as compensation for these things. Please let me know if you are interested and/or if you have any questions.

OK, here’s the cool part: For all you know, I’ve taken this guy (or bot) up on his offer. So from now on, when reading this blog, you’ll have to guess which of the posts you’re seeing are sponsored content. Given the conditions above, unfortunately I’m not allowed to label these particular posts.

It’s possible, right? Just about all my posts have links, and, hmmmm . . . $50 per post x 400 posts a year = $20,000. That’s real money! Also think of all the time this frees up for me, if someone else is writing all my posts for me. It’s really a win-win situation, and Google can translate all the Russian to English, no problem.

The post Hey! Free money! appeared first on Statistical Modeling, Causal Inference, and Social Science.



from Statistical Modeling, Causal Inference, and Social Science https://ift.tt/2E5H0s7
via IFTTT

Comments

Popular posts from this blog

Using RStudio and LaTeX

(This article was first published on r – Experimental Behaviour , and kindly contributed to R-bloggers) This post will explain how to integrate RStudio and LaTeX, especially the inclusion of well-formatted tables and nice-looking graphs and figures produced in RStudio and imported to LaTeX. To follow along you will need RStudio, MS Excel and LaTeX. Using tikzdevice to insert R Graphs into LaTeX I am a very visual thinker. If I want to understand a concept I usually and subconsciously try to visualise it. Therefore, more my PhD I tried to transport a lot of empirical insights by means of  visualization . These range from histograms, or violin plots to show distributions, over bargraphs including error bars to compare means, to interaction- or conditional effects of regression models. For quite a while it was very tedious to include such graphs in LaTeX documents. I tried several ways, like saving them as pdf and then including them in LaTeX as pdf, or any other file ...

Controlling legend appearance in ggplot2 with override.aes

[This article was first published on Very statisticious on Very statisticious , and kindly contributed to R-bloggers ]. (You can report issue about the content on this page here ) Want to share your content on R-bloggers? click here if you have a blog, or here if you don't. In ggplot2 , aesthetics and their scale_*() functions change both the plot appearance and the plot legend appearance simultaneously. The override.aes argument in guide_legend() allows the user to change only the legend appearance without affecting the rest of the plot. This is useful for making the legend more readable or for creating certain types of combined legends. In this post I’ll first introduce override.aes with a basic example and then go through three additional plotting scenarios to how other instances where override.aes comes in handy. Table of Contents R packages Introducing override.aes Adding a guides() layer Using the guide argument in scale_*() Changing multiple aesthetic par...