powered by
A QR code is a two-dimensional barcode developed by the Denso Wave company.
qr_code(x, ecl = c("L", "M", "Q", "H"))
The QR code as a logical matrix with "qr_code" class.
the input string
the required error correction level. Available options are "L" (7%), "M" (15%), "Q" (25%) and "H" (30%). Defaults to "L".
"L"
"M"
"Q"
"H"
Thierry Onkelinx
Other qr: coordinates(), generate_svg(), plot.qr_code(), print.qr_code(), qr_event(), qr_location(), qr_sepa(), qr_wifi()
coordinates()
generate_svg()
plot.qr_code()
print.qr_code()
qr_event()
qr_location()
qr_sepa()
qr_wifi()
qr_code("https://www.r-project.org") qr <- qr_code("https://cran.r-project.org/package=qrcode", ecl = "M") qr plot(qr) # the qr_code object is a logical matrix str(qr) qr[1:10, 1:10]
Run the code above in your browser using DataLab