as.character {fingerprint}R Documentation

Generates a String Representation of a Fingerprint

Description

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

Usage

## S4 method for signature 'fingerprint':
as.character(x)

Arguments

x An object of class fingerprint

Value

A string of 1's and 0's

Author(s)

Rajarshi Guha rguha@indiana.edu

Examples

# make a fingerprint vector
fp <- new("fingerprint", nbit=32, bits=sample(1:32, 20))

# print out the string representation
as.character(fp)

[Package fingerprint version 3.1.2 Index]