-
Notifications
You must be signed in to change notification settings - Fork 9
/
example_friendadvice.py
33 lines (27 loc) · 1.09 KB
/
example_friendadvice.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
__author__ = 'lisette.espin'
#######################################################################
# References
# - http://www.albany.edu/faculty/kretheme/PAD637/ClassNotes/Spring%202013/Lab8.pdf
#######################################################################
#######################################################################
# Dependencies
#######################################################################
import numpy as np
from libs import utils
from libs.qap import QAP
#######################################################################
# Data
# Source: http://vlado.fmf.uni-lj.si/pub/networks/data/ucinet/ucidata.htm
#######################################################################
X = minfo = np.loadtxt('data/friendship.dat')
Y = np.loadtxt('data/advice.dat')
utils.printf('Friendship: \n{}'.format(X))
utils.printf('Advise: \n{}'.format(Y))
np.random.seed(831)
#######################################################################
# QAP
#######################################################################
qap = QAP(Y, X, 2000)
qap.qap()
qap.summary()
qap.plot()