You can find materials from this vid (and others) at github.com/equitable-equations/youtube.
@theexpatteacher8255 Жыл бұрын
Thanks for sharing
@pinklemonade65976 ай бұрын
Thank you so much for these videos ive learnt so much in such a short time!
@theexpatteacher8255 Жыл бұрын
Thanks for the very informative video. I'm teaching my students bar charts and this helps. One note: When you change the x and y axis, the *Total Employed RN* has to be in a forward tick, this " ` ", which had me confused for a bit.
@lenord123 Жыл бұрын
I could not get it to work until I read this. Thanks for posting it.
@pinklemonade65976 ай бұрын
It’s probably just me not but in case anyone got stuck when trying to add total employed rn, remember to use backticks not quotes!
@geogebraphtraining25017 ай бұрын
Great job! Thank you very much!
@almaisaksАй бұрын
Beautiful bar charts in R
@StephanieGagne-r6qАй бұрын
thank you
@AllThingsAnatomy6 ай бұрын
Awesome Video! How could I add margin text on a bar chart? I keep getting error "plot.new has not been called yet" when using mtext
@arkhust6775 Жыл бұрын
Hi! I am new to R, your tutorials are helping me a lot to learn how to navigate through it, thank you! I was wondering, when we dont give "y" a value, on the charts we see the word "count" , I was wondering, is there any way to remove that word?
@EquitableEquations Жыл бұрын
Yep, you want to add a "labs" argument. There's a help file for it.
@arkhust6775 Жыл бұрын
@@EquitableEquations ah i see, thank you! .
@romanvasiura6705 Жыл бұрын
Thank you!
@rajendraregmi54072 жыл бұрын
I cannot do the last part of your video. I am a great fan of your video and will follow you. Thank you
@EquitableEquations2 жыл бұрын
Thanks! You can do it!
@sarveshkannan6826 ай бұрын
I am not able to access the Carseats datasets.
@c12345-e Жыл бұрын
Hi there! Im really enjoying your videos. I am trying to reproduce your Nurse examples but my plot looks very weird compared to your, though I have checked multiple times that my code is the same. ggplot(nurses_2020, aes(x= State, y= "Total Employed RN")) + geom_col() Basically, the plot i get is where all the state bars go to the exact same height horizontally. Also, when I go into your folder to look at your Rscript it says x = Total Employed RN and y = State, but that looks super wrong too.
@EquitableEquations Жыл бұрын
Hi! You need to use a single tick ` and not a quotation mark ". R thinks you're specifying a character vector of length 1.
@brazilfootball2 жыл бұрын
Is it possible to make a bar plot where each colored bar has its own scaled y-axis? I’m trying to plot the density of two different species on the same plot but they’re on completely different “magnitudes” (0.1 vs 0.001).
@EquitableEquations2 жыл бұрын
You might use a logarithmic scale for the y-axis with scale_y_continuous().
@brazilfootball2 жыл бұрын
@@EquitableEquations That worked well, thank you!
@JohnChu-z4w Жыл бұрын
good, watched 2023.10.8
@umarhussain59572 жыл бұрын
Sir can u share your scripts in description Link? Thanks
@EquitableEquations2 жыл бұрын
A github with source files is definitely on my to-do list.