Skip to content

Commit 2fa1342

Browse files
committed
Rename "without-empty" to "cleaned"
Focus on "what" over "how" to be more general for different use cases.
1 parent fa12929 commit 2fa1342

File tree

95 files changed

+95
-95
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+95
-95
lines changed

cypher/Centrality/Centrality_2a_Page_Rank_Estimate.cypher

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Centrality 2a Page Rank Estimate Memory
22

33
CALL gds.pageRank.write.estimate(
4-
$dependencies_projection + '-without-empty', {
4+
$dependencies_projection + '-cleaned', {
55
writeProperty: $dependencies_projection_write_property
66
,maxIterations: 50
77
,dampingFactor: 0.85

cypher/Centrality/Centrality_2b_Page_Rank_Statistics.cypher

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Centrality 2b Page Rank Statistics
22

33
CALL gds.pageRank.stats(
4-
$dependencies_projection + '-without-empty', {
4+
$dependencies_projection + '-cleaned', {
55
maxIterations: 50
66
,dampingFactor: 0.85
77
,tolerance: 0.00000001

cypher/Centrality/Centrality_3c_Page_Rank_Mutate.cypher

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Centrality 3c Page Rank Mutate
22

33
CALL gds.pageRank.mutate(
4-
$dependencies_projection + '-without-empty', {
4+
$dependencies_projection + '-cleaned', {
55
maxIterations: 50
66
,dampingFactor: 0.85
77
,tolerance: 0.00000001

cypher/Centrality/Centrality_3d_Page_Rank_Stream.cypher

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Centrality 3d Page Rank Stream
22

33
CALL gds.pageRank.stream(
4-
$dependencies_projection + '-without-empty', {
4+
$dependencies_projection + '-cleaned', {
55
maxIterations: 50
66
,dampingFactor: 0.85
77
,tolerance: 0.00000001

cypher/Centrality/Centrality_3e_Page_Rank_Write.cypher

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Centrality 3e Page Rank Write
22

33
CALL gds.pageRank.write(
4-
$dependencies_projection + '-without-empty', {
4+
$dependencies_projection + '-cleaned', {
55
maxIterations: 50
66
,dampingFactor: 0.85
77
,tolerance: 0.00000001

cypher/Centrality/Centrality_4a_Article_Rank_Estimate.cypher

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Centrality 4a Article Rank Estimate Memory
22

33
CALL gds.articleRank.write.estimate(
4-
$dependencies_projection + '-without-empty', {
4+
$dependencies_projection + '-cleaned', {
55
writeProperty: $dependencies_projection_write_property
66
,maxIterations: 30
77
,dampingFactor: 0.85

cypher/Centrality/Centrality_4b_Article_Rank_Statistics.cypher

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Centrality 4b Article Rank Statistics
22

33
CALL gds.articleRank.stats(
4-
$dependencies_projection + '-without-empty', {
4+
$dependencies_projection + '-cleaned', {
55
maxIterations: 30
66
,dampingFactor: 0.85
77
,tolerance: 0.00000001

cypher/Centrality/Centrality_4c_Article_Rank_Mutate.cypher

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//Centrality 4c Article Rank Mutate
22

33
CALL gds.articleRank.mutate(
4-
$dependencies_projection + '-without-empty', {
4+
$dependencies_projection + '-cleaned', {
55
maxIterations: 30
66
,dampingFactor: 0.85
77
,tolerance: 0.00000001

cypher/Centrality/Centrality_4d_Article_Rank_Stream.cypher

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//Centrality 4d Article Rank Stream
22

33
CALL gds.articleRank.stream(
4-
$dependencies_projection + '-without-empty', {
4+
$dependencies_projection + '-cleaned', {
55
maxIterations: 30
66
,dampingFactor: 0.85
77
,tolerance: 0.00000001

cypher/Centrality/Centrality_4e_Article_Rank_Write.cypher

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//Centrality 4e Article Rank Write
22

33
CALL gds.articleRank.write(
4-
$dependencies_projection + '-without-empty', {
4+
$dependencies_projection + '-cleaned', {
55
maxIterations: 50
66
,dampingFactor: 0.85
77
,tolerance: 0.00000001

0 commit comments

Comments
 (0)