Skip to main content

#FunDataFriday – #BlackInDataWeek

[This article was first published on #FunDataFriday - Little Miss Data, 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.

WHAT IS IT?

#BlackInDataWeek is a free, online data conference taking place November 16-21, 2020. Straight from their website, #BlackInDataWeek is:

>
A week-long celebration to (1) highlight the valuable work and experiences of Black people in the field of Data, (2) provide community, and (3) educational and professional resources.

WHY IS IT AWESOME?

I can’t possibly list all of the reasons why this event is awesome. Just look at the description above, it’s full of goodness! The organizers have created a very exciting event structured to provide community, support and growth for Black people working in data.

Also, the sessions are on fire! I’ve added nearly all of them to my calendar. They offer a wide range of content from career to technical sessions and geared towards all levels of experience.

I’m particularly excited to attend these sessions:

  • Data Careers After Age 40 – November 17 1:30 – 2:30 PM EST

  • Survival Strategies in Data Careers – November 17 5:00 – 6:00 PM EST

  • Data Journeys Fireside Chat – November 17 6:00 – 8:00 PM EST

  • COVID-19 Health Disparities – November 19 12:00 – 12:30 PM EST

  • Avoid a Blank Stare: How to Tell a Great Story with Data – November 19 1:00 – 1:30 PM EST

  • Visualize Your Data Journey – November 19 5:00 – 7:00 PM EST

  • Bias in AI Algorithms – November 20 6:00 – 7:00 PM EST

  • AMA Algorithmic Fairness r/blackpeopletwitter – November 20 12:00 PM EST

For beginners data professionals, you will not want to miss these sessions:

  • Introduction to R – November 18 2:00 – 3:00pm EST

  • Machine Learning Tutorial – November 18 12:00 – 1:00 PM EST

  • Career Development and Mentorship Panel – November 21 2:00 – 5:00 PM EST

HOW TO GET STARTED?

Visit their Event Brite sign up page and register for the conference today. I will see you there!

To leave a comment for the author, please follow the link and comment on their blog: #FunDataFriday - Little Miss Data.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

The post #FunDataFriday - #BlackInDataWeek first appeared on R-bloggers.



from R-bloggers https://ift.tt/36DFZI5
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 ...

Explaining models with Triplot, part 1

[This article was first published on R in ResponsibleML on Medium , 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. Explaining models with triplot, part 1 tl;dr Explaining black box models built on correlated features may prove difficult and provide misleading results. R package triplot , part of the DrWhy.AI project, is aiming at facilitating the process of explaining the importance of the whole group of variables, thus solving the problem of correlated features. Calculating the importance of explanatory variables is one of the main tasks of explainable artificial intelligence (XAI). There are a lot of tools at our disposal that helps us with that, like Feature Importance or Shapley values, to name a few. All these methods calculate individual feature importance for each variable separately. The problem arises when features used ...