-
-
Notifications
You must be signed in to change notification settings - Fork 46.9k
Procentual proximity scoring algorithm implemented #2280
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
Merged
Merged
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
''' | ||
developed by: markmelnic | ||
original repo: https://github.com/markmelnic/Scoring-Algorithm | ||
|
||
Analyse data using a range based percentual proximity algorithm | ||
and calculate the linear maximum likelihood estimation. | ||
The basic principle is that all values supplied will be broken | ||
down to a range from 0 to 1 and each column's score will be added | ||
up to get the total score. | ||
|
||
========== | ||
Example for data of vehicles | ||
price|mileage|registration_year | ||
20k |60k |2012 | ||
22k |50k |2011 | ||
23k |90k |2015 | ||
16k |210k |2010 | ||
|
||
We want the vehicle with the lowest price, | ||
lowest mileage but newest registration year. | ||
Thus the weights for each column are as follows: | ||
[0, 0, 1] | ||
|
||
>>> scalg([[20, 60, 2012],[23, 90, 2015],[22, 50, 2011]], [0, 0, 1]) | ||
[[20, 60, 2012, 2.0], [23, 90, 2015, 1.0], [22, 50, 2011, 1.3333333333333335]] | ||
''' | ||
|
||
|
||
def scalg(source_data : list, weights : list): | ||
|
||
''' | ||
weights - int list | ||
possible values - 0 / 1 | ||
0 if lower values have higher weight in the data set | ||
1 if higher values have higher weight in the data set | ||
''' | ||
|
||
# getting data | ||
data_lists = [] | ||
for item in source_data: | ||
for i in range(len(item)): | ||
try: | ||
data_lists[i].append(float(item[i])) | ||
except IndexError: | ||
# generate corresponding number of lists | ||
data_lists.append([]) | ||
data_lists[i].append(float(item[i])) | ||
|
||
score_lists = [] | ||
# calculating each score | ||
for dlist, weight in zip(data_lists, weights): | ||
mind = min(dlist) | ||
maxd = max(dlist) | ||
|
||
score = [] | ||
# for weight 0 score is 1 - actual score | ||
if weight == 0: | ||
for item in dlist: | ||
try: | ||
score.append(1 - ((item - mind) / (maxd - mind))) | ||
except ZeroDivisionError: | ||
score.append(1) | ||
|
||
elif weight == 1: | ||
for item in dlist: | ||
try: | ||
score.append((item - mind) / (maxd - mind)) | ||
except ZeroDivisionError: | ||
score.append(0) | ||
|
||
# weight not 0 or 1 | ||
else: | ||
raise Exception("Invalid weight of %f provided" % (weight)) | ||
markmelnic marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
score_lists.append(score) | ||
|
||
# initialize final scores | ||
final_scores = [0 for i in range(len(score_lists[0]))] | ||
|
||
# generate final scores | ||
for i, slist in enumerate(score_lists): | ||
for j, ele in enumerate(slist): | ||
final_scores[j] = final_scores[j] + ele | ||
|
||
# append scores to source data | ||
for i, ele in enumerate(final_scores): | ||
source_data[i].append(ele) | ||
|
||
return source_data |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.