-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Generate 5 matches without specifying the markets_to_be_matched. #7
Comments
thank you for your kind comments @gabriele-franco - that hasn't been implemented and unfortunately, I'm unable to add functionality to the library at the moment, thank you again and good luck! |
Hi @gabriele-franco - sorry for the delay in getting back on this. Turns out this should already work - can you try this:
the variable I'm just getting back to developing this library again, and hope to have all of the functionality in the R package implemented soon. thank you |
quick question! so parallel processing also be done? |
not yet - if you set
|
Hello,
I'm trying to use this awesome library as I use MarketMatch in R with the following dataset:
matches = rmm.best_matches( data=df, id_variable=location, date_variable=date, markets_to_be_matched=["Lazio"], matching_variable=conversions, parallel=False, warping_limit=1, dtw_emphasis=1, matches=regions_matched, start_match_period="2021-01-01", end_match_period="2022-07-01", )
This script allows to me find the markets with the highest correlation with "Lazio".
Can I ask this function to find 5 automatic matches without specifying as we do in the function Market Match?:
mm <- best_matches(data=weather, id_variable="Area", date_variable="Date", matching_variable="Mean_TemperatureF", parallel=FALSE, warping_limit=1, # warping limit=1 dtw_emphasis=1, # rely only on dtw for pre-screening matches=5, # request 5 matches start_match_period="2014-01-01", end_match_period="2014-10-01")
I want to create a script that automatically allows me to cluster a test and control group in my regions to simplify how I run Geo Experiments across my country.
The text was updated successfully, but these errors were encountered: