Skip to content
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

v3.4 #144

Merged
merged 51 commits into from
Oct 23, 2018
Merged

v3.4 #144

Changes from 1 commit
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
b04d61a
Add possibility to compute 1st activity over multiple data sources
Jul 4, 2018
e212960
Add semantic of NA for no information in first.activity
Jul 24, 2018
d8f1edb
Add functionality of computing single first activity over all sources
Jul 25, 2018
334c258
Refactor add.vertex.attribute.first.activity
Jul 26, 2018
64a4788
Replace test add.vertex.attribute.first.activity
Jul 30, 2018
36decfc
Add test for add.vertex.attribute.first.activity
Jul 30, 2018
b0ffe62
Remove unnecessary type conversation from first.activity test
Jul 30, 2018
8ddf048
Add test for add.vertex.attribute.first.activity
Jul 30, 2018
24ffbbb
Minor changes
Jul 31, 2018
ca0dfde
Improvements suggested by reviews
Aug 2, 2018
67eaae1
Fix typo in documentation
Aug 16, 2018
8bc3236
Update NEWS.md
Aug 17, 2018
06ed129
Merge pull request #135 from klaraschlueter/attribute-active.ranges
clhunsen Aug 20, 2018
4a9ad23
Deal with empty data sources in 'get.first.activity.data'
clhunsen Aug 22, 2018
425c46b
Adjust tests for vertex attribute 'first.activity' to contain empty data
clhunsen Aug 22, 2018
40b7d87
Replace 'get.first.activity.data' with faster implementation
clhunsen Aug 23, 2018
7031d45
Create global constant named 'BASE.ARTIFACTS'
clhunsen Aug 24, 2018
1ac09f6
Move 'RELATION.TO.DATASOURCE' to module 'networks'
clhunsen Aug 24, 2018
0d184b8
Adapt 'ProjectData$get.artifacts' to work with all data sources
clhunsen Aug 24, 2018
23a8aa3
Determine list of artifacts more reasonably in ProjectData
clhunsen Aug 24, 2018
40974ba
Split data into time-based equally-sized windows
clhunsen Aug 24, 2018
dcf56ad
Fortify check on callgraph revision in NetworkBuilder
clhunsen Aug 25, 2018
b9319e3
Add function to delete authors without bipartite edges from networks
clhunsen Aug 25, 2018
6df72e9
Move pull-request template to take effect
clhunsen Aug 25, 2018
bf92d28
Update changelog
clhunsen Aug 25, 2018
756a901
Update copyright headers
clhunsen Aug 25, 2018
010a935
Fix function 'split.networks.time.based'
bockthom Aug 28, 2018
f518890
Fix minor issues in function 'get.first.activity.data' (PR #140)
clhunsen Aug 30, 2018
1c7edd0
Update documentation in 'merge.network.data'
clhunsen Aug 31, 2018
77e5a0b
Update changelog
clhunsen Aug 31, 2018
7f6ab1a
Improve function 'save.and.load'
clhunsen Sep 6, 2018
a376656
Update changelog
clhunsen Sep 6, 2018
107854c
Fix minor issues from review for PR #140
clhunsen Sep 11, 2018
94cc87b
Split networks into time-based equally-sized windows
clhunsen Sep 11, 2018
8d80fa9
Fix problem with fractional time periods in 'generate.date.sequence'
clhunsen Sep 11, 2018
c5413c2
Handle ARPACK errors in eigen_centrality calculation
bockthom Sep 11, 2018
4e211f0
Fix documentation on function 'delete.authors.without.specific.edges'
clhunsen Sep 13, 2018
b78f54f
Add method 'ProjectData$group.data.source.by.column'
clhunsen Sep 13, 2018
4850666
Fix inline documentation of 'delete.authors.without.specific.edges'
clhunsen Sep 17, 2018
a174753
Fix sliding windows in splitting functionality
clhunsen Sep 18, 2018
5ac1492
Add parameter 'bins' to function 'split.networks.time.based'
clhunsen Sep 18, 2018
f213648
Fix handling of ARPACK errors in eigen-centrality calculation
clhunsen Sep 18, 2018
26e3bef
Allow merge of empty networks (edges and/or vertices)
clhunsen Sep 19, 2018
6aca45e
Adapt inline documentation in function 'get.first.activity.data'
clhunsen Sep 20, 2018
11f7189
Rename relation-data methods in ProjectData
clhunsen Sep 17, 2018
5b74038
Handle incorrect keys and values in 'get.key.to.value.from.df'
clhunsen Sep 21, 2018
2c9ae5a
Update changelog
clhunsen Sep 21, 2018
3d737c2
Fix test on network merging
clhunsen Sep 21, 2018
15dc45f
Apply minor improvements from review for PR #140
clhunsen Oct 2, 2018
7b3d387
Merge pull request #140 from clhunsen/claus-updates
bockthom Oct 2, 2018
d38807b
Version v3.4
bockthom Oct 22, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update NEWS.md
Signed-off-by: Klara Schlueter <[email protected]>
Klara committed Aug 17, 2018

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 8bc323600c97e9899fec2ff7420d57837d55cf56
7 changes: 7 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# codeface-extraction-r – Changelog


## Unversioned

### Changed/Improved
- Add possibility to add multiple first activities for different activity types in one vertex attribute (04f18b3097d17fe6b3486c656a807133e0ac0a42)
- Add possibility to decide, if first activity should be computed per activity type oder over all activity types when added as vertex attribute (86962a313ceeb09c0e0675dc509d91e10647d6b6)


## 3.3

### Added