A big challenge for beginners who want to learn to program in R is that the R help documentation can be quite complicated. As a result, these novices often rely on Google to find answers to their problems. However, Googling your programming problems instead of reading the help docs is like going to the doctor and asking for a pill to fix your symptoms instead of figuring out what's really going on. It may provide some relief in the short run, but when you don't understand the functions you're using, you'll keep running into the same issues. The goal of this project is to provide a cure: simple, beginner-friendly help docs that have everything a beginner needs to know and nothing they don't.
If you don't already have devtools
installed, you'll need to do that.
install.packages("devtools")
Then install qelp, but don't attach it using library(). This way you can avoid namespace conflicts that could make things really annoying.
library(devtools)
install_github("cobriant/qelp")
See qelp docs for a function:
?qelp::select
See normal help docs for a function:
?select
c
install.packages
library
list
log
max
min
mean
nrow
ncol
paste
quantile
rep
round
sample
sd
seq
sum
glance
tidy
arrange
bind_rows
case_when
count
distinct
filter
group_by
if_else
lag
lead
left_join
mutate
select
slice
summarize
iv_robust
gapminder
geom_abline
geom_area
geom_bar
geom_boxplot
geom_col
geom_density
geom_freqpoly
geom_histogram
geom_hline
geom_jitter
geom_label
geom_line
geom_point
geom_rect
geom_segment
geom_smooth
geom_violin
geom_vline
facet_grid
facet_wrap
ggplot
labs
qplot
scale_*_manual
%>%
accumulate
map
map2
pmap
reduce
read_csv
fitted.values
lm
rchisq
, dchisq
, pchisq
, qchisq
residuals
rf
, df
, pf
, qf
rnorm
, dnorm
, pnorm
, qnorm
rt
, dt
, pt
, qt
str_detect
tibble
view
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.