No matching definitions.

frame/select

src/frame/select.tur
defn

select-cols

(select-cols [f :int names :int] :int)

keep only the named columns, in the given order.

defn

drop-cols

(drop-cols [f :int names :int] :int)

keep every column except those named in `names`. Since: FR2

defn

rename

(rename [f :int old :cstr new :cstr] :int)

return a new frame with column `old` renamed to `new`.

defn

with-col

(with-col [f :int name :cstr type :int col :int] :int)

return a new frame with the named column added (or replaced).

Since: FR2

Internal definitions
__s-nil
__s-cons
__cstr-list-has?
__cstr-list-nth
__cstr-list-nth-int
__cstr-list-length
__pair-first
__pair-second
__append-end
__clone-field-at
__build-from-indices
__indices-from-names
__all-indices-except
__assemble
__rename-build
__with-col-append
__with-col-replace