У нас вы можете посмотреть бесплатно Easy R - Adding Labels to Graphs или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
In this video, I walk you through a few easy ways to add labels to simple graphs. (Codes below) Thanks for watching! David. R Burns www.lakelionsroar.com / david-r-burns CODES--------------------- Note: you will have to add your own names to each value. I have aded placeholders such as "yourdata" and "yourlabel" data=read.csv(file.choose(),header=T,sep=",") #Import .csv file hist(yourdata$yourvariable) # Histogram boxplot(yournumericvariable~yourcategoricalvariable, data=yourdata) #boxplot plot(yourdata$yournumericvariable1, yourdata$yournumericvariable2) #scatterplot ------- After entering the code and confirming that the graph is correct, you can press the UP key to re-access the previous code(s) and add the label commands, [xlab=], [ylab=], and [main=]: hist(yourdata$yourvariable, xlab="yourxlabel", main="yourchartitle") #Histogram with Labels boxplot(yournumericvariable~yourcategoricalvariable, data=yourdata, xlab="yourxlabel", ylab="yourylabel", main="yourchartitle") #Boxplot with Labels plot(yourdata$yournumericvariable1, yourdata$yournumericvariable2, xlab="yourxlabel", ylab="yourylabel", main="yourchartitle") #Scatterplot with labels For Castleton University's online section of Statistics for Nursing for Dr. Abess Rajia For Castleton University Psychological Science David R. Burns Bomoseen, Vermont 2018