web-dev-qa-db-ja.com

整数をバイナリベクトルに変換する方法

Rを使用して整数をバイナリベクトルに変換する方法

例えば ​​:

number <- 11
[1] 1 0 1 1

数値のベクトル全体(最小値= 0、最大= 300)をバイナリマトリックスに変換する必要がある場合、(Rコードまたはパッケージの既存の関数を使用して)可能な最速の変換方法は何ですか?

21
Qbik

整数を32のrawのベクトルに変換するintToBits関数があるので、これを行うことができます。

decimals <- c(3,5,11,4)
m <- sapply(decimals,function(x){ as.integer(intToBits(x))})
m

> m
      [,1] [,2] [,3] [,4]
 [1,]    1    1    1    0
 [2,]    1    0    1    0
 [3,]    0    1    0    1
 [4,]    0    0    1    0
 [5,]    0    0    0    0
 [6,]    0    0    0    0
 [7,]    0    0    0    0
 [8,]    0    0    0    0
 [9,]    0    0    0    0
[10,]    0    0    0    0
[11,]    0    0    0    0
[12,]    0    0    0    0
[13,]    0    0    0    0
[14,]    0    0    0    0
[15,]    0    0    0    0
[16,]    0    0    0    0
[17,]    0    0    0    0
[18,]    0    0    0    0
[19,]    0    0    0    0
[20,]    0    0    0    0
[21,]    0    0    0    0
[22,]    0    0    0    0
[23,]    0    0    0    0
[24,]    0    0    0    0
[25,]    0    0    0    0
[26,]    0    0    0    0
[27,]    0    0    0    0
[28,]    0    0    0    0
[29,]    0    0    0    0
[30,]    0    0    0    0
[31,]    0    0    0    0
[32,]    0    0    0    0
26
digEmAll

この SO postintToBits関数を示唆しています。関数number2binaryを定義します。これには、返されるビット数を制御するための引数noBitsが含まれています。標準は32ビットを返すことです。

number2binary = function(number, noBits) {
       binary_vector = rev(as.numeric(intToBits(number)))
       if(missing(noBits)) {
          return(binary_vector)
       } else {
          binary_vector[-(1:(length(binary_vector) - noBits))]
       }
    }

そしていくつかの例として:

> number2binary(11)
 [1] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1
> number2binary(11, 4)
[1] 1 0 1 1
20
Paul Hiemstra

私がM. J.クローリーの「The R Book」で見つけた解決策は次の関数です:

binary <- function(x) {
  i <- 0
  string <- numeric(32)
  while(x > 0) {
    string[32 - i] <- x %% 2
    x <- x %/% 2
    i <- i + 1 
  }
  first <- match(1, string)
  string[first:32] 
}
7
atesghnagfbvgfr

CRANパッケージ「binaryLogic」をお試しください

library(binaryLogic)

as.binary(11)
[1] 1 0 1 1

as.binary(11, littleEndian=TRUE)
[1] 1 1 0 1

as.binary(42, n=16)
[1] 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0

as.binary(0:2, n=2)
[[1]]
[1] 0 0

[[2]]
[1] 0 1

[[3]]
[1] 1 0

as.binary(0xFF)
[1] 1 1 1 1 1 1 1 1

また利用できる:シフト、回転、グレイコードなど。

7
lemon

intToBitに基づいて、次の関数を使用できます。

intToBitVect <- function(x){
  tmp <- rev(as.numeric(intToBits(x)))
  id <- seq_len(match(1,tmp,length(tmp))-1)
  tmp[-id]
}

最初の行は、intToBits出力を数値0および1に変換し、順序をまっすぐにします。 2行目は、次のように、保持する必要がある値を確認します。

  • matchを使用して、最初の1が発生する場所を確認します。 1が見つからない場合は、matchtmpベクトルの長さを返すように要求します。
  • 1からtmpベクトルで最初にseq_lenが出現する前の位置までのシーケンスを(1を使用して)作成します
  • tmpベクトルのそれらの位置をすべて削除

それが機能することを示すには:

> intToBitVect(11)
[1] 1 0 1 1
> intToBitVect(0)
[1] 0
5
Joris Meys

そして別の:

toBits <- function (x, nBits = 8){
   tail(rev(as.numeric(intToBits(x))),nBits)
}
2
Joe

バイナリシーケンス、つまり1と0のベクトルを返す場合、この関数はそれを行いますが、一度に1つの数値しか取ることができません。

dectobin <- function(y) {
  # find the binary sequence corresponding to the decimal number 'y'
  stopifnot(length(y) == 1, mode(y) == 'numeric')
  q1 <- (y / 2) %/% 1
  r <- y - q1 * 2
  res = c(r)
  while (q1 >= 1) {
   q2 <- (q1 / 2) %/% 1
   r <- q1 - q2 * 2
   q1 <- q2
   res = c(r, res)
  }
  return(res)
}
2
epwalsh

これを取得するために実際に関数を呼び出す必要はありません-モジュラー演算だけで答えが得られます。

int_to_binary <- function(num, pow) {
  if(2^(pow + 1) - 1 < num) stop("Use a higher values of 'pow'")
  num %/% (2^(pow:0)) %% 2
}
1
Melissa Key
intToBin <- function(x){
  if (x == 1)
    1
  else if (x == 0)
    NULL
  else {
   mod <- x %% 2
   c(intToBin((x-mod) %/% 2), mod)
  }
}

したがって、intToBin(10)は

[1] "1" "0" "1" "0"

そして、あなたがベクトルの代わりに文字列が欲しいなら

> paste0(intToBin(10), collapse = "")
[1] "1010"
0
schwannden