The function returns a string of 1's and 0's or a character vector of features depending on the nature of the fingerprint supplied.
# S4 method for fingerprint
as.character(x)
# S4 method for featvec
as.character(x)
# S4 method for feature
as.character(x)
An object of class fingerprint
, featvec
or feature
A string of 1's and 0's or else a character vector of features (with their counts)
# NOT RUN { # make a fingerprint vector fp <- new("fingerprint", nbit=32, bits=sample(1:32, 20)) # print out the string representation as.character(fp) # }
Run the code above in your browser using DataCamp Workspace