Explore

Find agent skills by outcome

120,766 skills indexed with the new KISS metadata standard.

Showing 24 of 120,766Categories: Creative, Writing & Content, General, Coding & Debugging, Data
General
PromptBeginner5 minmarkdown

print(na_report[na_report$n_miss > 0

])

0
Data
PromptBeginner5 minmarkdown

df <- read.csv(your_data.csv

stringsAsFactors = FALSE)

0
General
PromptBeginner5 minmarkdown

pct_miss = round(colMeans(is.na(df)) * 100

1)

0
General
PromptBeginner5 minmarkdown

head(df

10)

0
General
PromptBeginner5 minmarkdown

# library(car) # Type II/III ANOVA

VIF

0
General
PromptBeginner5 minmarkdown

# Copy this file

rename it

0
General
PromptBeginner5 minmarkdown

# library(lmtest) # Breusch-Pagan

Durbin-Watson etc.

0
General
PromptBeginner5 minmarkdown

- `colorRamp` returns a **function** mapping [0

1] to RGB matrix.

0
General
PromptBeginner5 minmarkdown

- `adjustcolor(col

alpha.f = 0.5)`: easy way to add transparency.

0
General
PromptBeginner5 minmarkdown

- `hcl(h

c

0
General
PromptBeginner5 minmarkdown

- `rgb(r

g

0
General
PromptBeginner5 minmarkdown

- Must call `dev.off()` to finalize the file. Without it

file may be empty/corrupt.

0
General
PromptBeginner5 minmarkdown

- `dev.copy(pdf

file = plot.pdf)` followed by `dev.off()` to save current plot.

0
Coding & Debugging
PromptBeginner5 minmarkdown

- `arrows`: `code = 1` (head at start)

`code = 2` (head at end

0
General
PromptBeginner5 minmarkdown

- `rect(xleft

ybottom

0
General
PromptBeginner5 minmarkdown

- `persp(x

y

0
General
PromptBeginner5 minmarkdown

- `contour(x

y

0
General
PromptBeginner5 minmarkdown

- For `image`

`x` and `y` specify **cell boundaries** or **midpoints** depending on context.

0
General
PromptBeginner5 minmarkdown

- Plots columns of one matrix against columns of another. Recycles `col`

`lty`

0
Data
PromptBeginner5 minmarkdown

- Formula interface: `pairs(~ var1 + var2 + var3

data = df)`.

0
General
PromptBeginner5 minmarkdown

- `panel` function receives `(x

y

0
General
PromptBeginner5 minmarkdown

- First argument can be an **expression** in `x` or a function: `curve(sin

0

0
General
PromptBeginner5 minmarkdown

- `axis(side

at

0
General
PromptBeginner5 minmarkdown

- `mtext`: `line` argument positions text in margin lines (0 = adjacent to plot

positive = outward). `adj` controls horizontal position (0-1).

0