Explore

Find agent skills by outcome

138,431 skills indexed with the new KISS metadata standard.

Showing 24 of 138,431Categories: Data & Insights, Openclaw, Creative, General, Data, Coding & Debugging
Data
PromptBeginner5 minmarkdownQuality: 24

- Formula interface (`aggregate(y ~ x

data

0
General
PromptBeginner5 minmarkdownQuality: 24

- c() on factors unions level sets (since R 4.1.0)

but earlier versions converted to integer.

0
General
PromptBeginner5 minmarkdownQuality: 24

- Levels are sorted by default

but sort order is locale-dependent at creation time.

0
General
PromptBeginner5 minmarkdownQuality: 28

- Only == and != work between factors; factors must have identical level sets. Ordered factors suppo...

.

0
General
PromptBeginner5 minmarkdownQuality: 28

- Duplicate column names allowed only with check.names = FALSE

but many operations will de-dup them silently.

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 28

- as.numeric(f) returns integer codes

not original values. Use as.numeric(levels(f))[f] or as.numeric(as.character(f)).

0
General
PromptBeginner5 minmarkdownQuality: 28

- duplicated marks the second and later occurrences as TRUE

not the first. Use fromLast = TRUE to reverse.

0
General
PromptBeginner5 minmarkdownQuality: 28

- Atomic vectors recycle to match longest column

but only if exact multiple. Protect with I() to prevent conversion.

0
Data
PromptBeginner5 minmarkdownQuality: 24

- For data frames

operates on whole rows. For lists

0
General
PromptBeginner5 minmarkdownQuality: 28

- cbind(NULL) returns NULL (not a matrix). For consistency

rbind(NULL) also returns NULL.

0
Data
PromptBeginner5 minmarkdownQuality: 28

- Result is always an array (even 1D)

class table. Convert to data frame with as.data.frame(tbl).

0
Data
PromptBeginner5 minmarkdownQuality: 24

- rbind on data frames matches columns by name

not position. Missing columns get NA.

0
General
PromptBeginner5 minmarkdownQuality: 28

- If f is a list of factors

interaction is used; levels containing . can cause unexpected splits unless sep is changed.

0
Data
PromptBeginner5 minmarkdownQuality: 28

- cbind on data frames calls data.frame(...)

not cbind.matrix. Mixing matrices and data frames can give unexpected results.

0
General
PromptBeginner5 minmarkdownQuality: 24

- Supports formula syntax: `split(df

~ Month)`.

0
General
PromptBeginner5 minmarkdownQuality: 28

- ... args to FUN are not divided into cells — they apply globally

so FUN should not expect additional args with same length as X.

0
General
PromptBeginner5 minmarkdownQuality: 24

- by = 0 or by = row.names merges on row names

adding a Row.names column.

0
Data
PromptBeginner5 minmarkdownQuality: 28

- Default by is `intersect(names(x)

names(y))` — can silently merge on unintended columns if data frames share column names.

0
Data
PromptBeginner5 minmarkdownQuality: 28

- Returns an array (not a data frame). Class info on return values is discarded (e.g.

Date objects become numeric).

0
General
PromptBeginner5 minmarkdownQuality: 24

- ... args cannot share names with X

MARGIN

0
General
PromptBeginner5 minmarkdownQuality: 24

- sapply can return a vector

matrix

0
General
PromptBeginner5 minmarkdownQuality: 24

- Factors

raw vectors

0
General
PromptBeginner5 minmarkdownQuality: 24

- Return value orientation is transposed: if FUN returns length-n vector

result has dim `c(n

0
Data
PromptBeginner5 minmarkdownQuality: 28

- On a data frame

apply coerces to matrix via as.matrix first — mixed types become character.

0