Skip to content

Commit

Permalink
i #229 Remove entity renaming from notebook
Browse files Browse the repository at this point in the history
The temporal entity transform now perform the
necessary renaming when needed, making the
code on the notebook redundant.

Signed-off-by: Carlos Paradis <carlosviansi@gmail.com>
  • Loading branch information
carlosparadis committed Mar 3, 2024
1 parent c98f4a6 commit 4516474
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions vignettes/gitlog_entity_showcase.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -87,28 +87,6 @@ changed_entities <- parse_gitlog_entity(git_repo_path,utags_path,project_git,kin
kable(head(changed_entities))
```

Naming.

```{r}
changed_entities[,c("author_name_email",
"author_datetimetz",
"committer_name_email",
"commit_hash",
"committer_datetimetz",
"entity",
"weight"):=list(stri_c(author_name,author_email,sep= " "),
as.POSIXct(as.integer(author_timestamp),
origin="1970-01-01",tz = "UTC"),
stri_c(committer_name,committer_email,sep= " "),
commit_hash,
as.POSIXct(as.integer(committer_timestamp),
origin="1970-01-01",tz = "UTC"),
entity_definition_name,
n_lines_changed
)]
head(changed_entities)
```

# Identity Match

Expand Down

0 comments on commit 4516474

Please sign in to comment.