Explore

Find agent skills by outcome

125,364 skills indexed with the new KISS metadata standard.

Showing 24 of 125,364Categories: Data & Insights, Coding & Debugging, General, Communication
General
PromptBeginner5 minmarkdownQuality: 24

- `difftime(time1

time2

0
General
PromptBeginner5 minmarkdownQuality: 24

- Explicit units: secs

mins

0
General
PromptBeginner5 minmarkdownQuality: 24

- POSIXct: seconds since 1970-01-01 UTC (compact

a numeric vector).

0
General
PromptBeginner5 minmarkdownQuality: 28

- difftime arithmetic: subtracting POSIXct objects gives difftime. Units auto-selected (secs

mins

0
General
PromptBeginner5 minmarkdownQuality: 24

- POSIXlt: list with components $sec

$min

0
General
PromptBeginner5 minmarkdownQuality: 24

Non-obvious behaviors

gotchas

0
General
PromptBeginner5 minmarkdownQuality: 24

- `format(date

%Y)` for year

0
General
PromptBeginner5 minmarkdownQuality: 24

- `seq.Date(from

to

0
General
PromptBeginner5 minmarkdownQuality: 24

- Returns a permutation vector of indices

not the sorted values. Use x[order(x)] to sort.

0
General
PromptBeginner5 minmarkdownQuality: 28

- For character sorting

depends on locale. Use method = radix for locale-independent fast sorting.

0
General
PromptBeginner5 minmarkdownQuality: 24

- Default is ascending; use -x for descending numeric

or decreasing = TRUE.

0
General
PromptBeginner5 minmarkdownQuality: 24

- Works on multiple arguments (e.g.

`complete.cases(x

0
General
PromptBeginner5 minmarkdownQuality: 28

- Returns columns named after the grouping variables

with result column keeping the original name.

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
General
PromptBeginner5 minmarkdownQuality: 28

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

rbind(NULL) also returns NULL.

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
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