Calculates attribute assortativity for a graph
python3 attribute_assortativity.py -n <node_attribute.csv> -e <edge_list.csv> <attr1> [<attr2>, ..., <attrN>] > <out.csv>
The tool uses the following libraries:
- argparse (https://pypi.org/project/argparse/)
pip3 install argparse
- networkx (https://networkx.github.io/)
pip3 install networkx