Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

to.binary

Binary representation of non-negative integer


Description

A non-negative integer is represented as a binary number. The digits, 0 or 1, of this number are returned in a vector.

Usage

to.binary(n, k = ceiling(logb(n+1,base=2)))

Arguments

n

a non-negative integers

k

number of digits to be returned.

Value

A vector of length k. The first element is the least significant digit.

Author(s)

A.I. McLeod

Examples

to.binary(63)
to.binary(64)
#sometimes we want to pad result with 'leading' 0's
to.binary(63, k=20)
to.binary(64, k=20)

bestglm

Best Subset GLM and Regression Utilities

v0.37.3
GPL (>= 2)
Authors
A.I. McLeod, Changjiang Xu and Yuanhao Lai
Initial release
2020-03-13

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.