sql >> データベース >  >> RDS >> PostgreSQL

生のバイトを生のバイトとしてRにインポートする

    これは、説明したタイプの単一の文字列をrawのベクトルに変換するために機能します。

    ## The string I think you're talking about
    dat <- "\\x1f8b080000000000"
    cat(dat, "\n")
    ## \x1f8b080000000000
    
    ## A function to convert one string to an array of raw
    f <- function(x)  {
        ## Break into two-character segments
        x <- strsplit(x, "(?<=.{2})", perl=TRUE)[[1]]
        ## Remove the first element, "\\x"
        x <- x[-1]
        ## Complete the conversion
        as.raw(as.hexmode(x))
    }
    
    ## Check that it works
    f(dat)
    ##  [1] 1f 8b 08 00 00 00 00 00
    



    1. DjangoORMクエリは新しいオブジェクトを選択できません

    2. SQLでデータの1つの行を別の行から減算する

    3. SQLを使用してこの日付をテーブルに入力できないのはなぜですか?

    4. 同じテーブルを2回結合するためのHibernateCreateCriteria-2つの差分エラーで2つのアプローチを試しました