# \donttest{
instrument_A = create_instrument_from_list(list(
"How old are you?",
"What is your gender?"
))
instrument_B = create_instrument_from_list(list(
"Do you smoke?"
))
instruments = list(instrument_A, instrument_B)
match_response = match_instruments(instruments)
instrument_list = match_response$instruments
similarity_matrix = match_response$matches
crosswalk_table.df = generate_crosswalk_table(
instrument_list, similarity_matrix, threshold = 0.7,
is_allow_within_instrument_matches = FALSE, is_enforce_one_to_one = TRUE
)
# }
Run the code above in your browser using DataLab