Datasets:
Commit ·
3884461
1
Parent(s): d0c5bd7
Update binkley.py
Browse files- binkley.py +9 -7
binkley.py
CHANGED
|
@@ -1,16 +1,18 @@
|
|
| 1 |
-
"""
|
| 2 |
|
| 3 |
import datasets
|
| 4 |
import pandas as pd
|
| 5 |
from collections import deque
|
| 6 |
|
| 7 |
_CITATION = """
|
| 8 |
-
@inproceedings{
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
|
|
|
|
|
|
| 14 |
}
|
| 15 |
"""
|
| 16 |
|
|
|
|
| 1 |
+
"""Binkley"""
|
| 2 |
|
| 3 |
import datasets
|
| 4 |
import pandas as pd
|
| 5 |
from collections import deque
|
| 6 |
|
| 7 |
_CITATION = """
|
| 8 |
+
@inproceedings{inproceedings,
|
| 9 |
+
author = {Lawrie, Dawn and Binkley, David and Morrell, Christopher},
|
| 10 |
+
year = {2010},
|
| 11 |
+
month = {11},
|
| 12 |
+
pages = {3 - 12},
|
| 13 |
+
title = {Normalizing Source Code Vocabulary},
|
| 14 |
+
journal = {Proceedings - Working Conference on Reverse Engineering, WCRE},
|
| 15 |
+
doi = {10.1109/WCRE.2010.10}
|
| 16 |
}
|
| 17 |
"""
|
| 18 |
|