fp.to.string {fingerprint} | R Documentation |
The function returns a string of 1's and 0's corresponding to the fingerprint vector supplied
fp.to.string(fp, size=1024)
fp |
A fingerprint vector |
size |
Length of the bit string represented by the fingerprint vector |
A string of 1's and 0's
Rajarshi Guha rguha@indiana.edu
# make a fingerprint vector fp <- fp.from.bstring("110011") # print out the string representation print(fp.to.string(fp, 6))