Explore

Find agent skills by outcome

111,173 skills indexed with the new KISS metadata standard.

Showing 24 of 111,173Categories: Data & Insights, Openclaw, Coding & Debugging, General, Data, Cursor-rules
General
PromptBeginner5 minmarkdown

- `stl` result components: `$time.series` matrix with columns `seasonal`

`trend`

0
General
PromptBeginner5 minmarkdown

- `decompose`: simpler than `stl`

uses moving averages. `type = additive` or `multiplicative`.

0
General
PromptBeginner5 minmarkdown

- `vignette()` lists all vignettes; `vignette(name

package = pkg)` opens a specific one.

0
General
PromptBeginner5 minmarkdown

- `arima(x

order = c(p

0
Data
PromptBeginner5 minmarkdown

- `ts(data

start

0
General
PromptBeginner5 minmarkdown

- Update with `setTxtProgressBar(pb

value)`. Close with `close(pb)`.

0
General
PromptBeginner5 minmarkdown

- Style 1: rotating `|/-\`

style 2: simple progress. Only style 3 shows percentage.

0
General
PromptBeginner5 minmarkdown

- `format(object.size(x)

units = MB)` for human-readable output.

0
General
PromptBeginner5 minmarkdown

- Works with factors

matrices

0
General
PromptBeginner5 minmarkdown

- `txtProgressBar(min

max

0
Data
PromptBeginner5 minmarkdown

- `relist(flesh

skeleton)` — `flesh` is the flat data

0
General
PromptBeginner5 minmarkdown

- Inverse of `unlist`: given a flat vector and a skeleton list

reconstructs the nested structure.

0
General
PromptBeginner5 minmarkdown

- **Does** add new names not in `x` — it uses `x[names(val)] <- val` internally

so any name in `val` gets added or replaced.

0
General
PromptBeginner5 minmarkdown

- `modifyList(x

val)` replaces elements of list `x` with those in `val` by **name**.

0
General
PromptBeginner5 minmarkdown

- `FUN` argument applies a function to each combination: `combn(5

3

0
General
PromptBeginner5 minmarkdown

- Checks attributes

names

0
General
PromptBeginner5 minmarkdown

- `combn(n

m)` or `combn(x

0
General
PromptBeginner5 minmarkdown

- Returns `TRUE` or a **character string** describing the difference — NOT `FALSE`. Use `isTRUE(all.equal(x

y))` in conditionals.

0
General
PromptBeginner5 minmarkdown

- Custom conditions: `stop(errorCondition(msg

class = myError))` then catch with `tryCatch(...

0
General
PromptBeginner5 minmarkdown

- Tests **near equality** with tolerance (default `1.5e-8`

i.e.

0
General
PromptBeginner5 minmarkdown

- `tryCatch(expr

error = function(e) e)` returns the error condition object.

0
General
PromptBeginner5 minmarkdown

- `tryCatch` **unwinds** the call stack — handler runs in the calling environment

not where the error occurred. Cannot resume execution.

0
General
PromptBeginner5 minmarkdown

- `lengths(x)` returns the length of **each element** of a list. Equivalent to `sapply(x

length)` but faster (implemented in C).

0
General
PromptBeginner5 minmarkdown

- `Find(f

x)` returns the **first** element where `f(elem)` is `TRUE`. `Find(f

0