qr_code | R Documentation |
A QR code is a two-dimensional barcode developed by the Denso Wave company.
qr_code(x, ecl = c("L", "M", "Q", "H"))
x |
the input string |
ecl |
the required error correction level.
Available options are |
The QR code as a logical matrix with "qr_code" class.
Thierry Onkelinx
Other qr:
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]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.