fp.to.string {fingerprint}R Documentation

Generates a string representation of a binary fingerprint

Description

The function returns a string of 1's and 0's corresponding to the fingerprint vector supplied

Usage

fp.to.string(fp, size=1024)

Arguments

fp A fingerprint vector
size Length of the bit string represented by the fingerprint vector

Value

A string of 1's and 0's

Author(s)

Rajarshi Guha rguha@indiana.edu

See Also

fp.from.bstring

Examples

# make a fingerprint vector
fp <- fp.from.bstring("110011")

# print out the string representation
print(fp.to.string(fp, 6))

[Package fingerprint version 1.6 Index]