belief_network_scrape
Science Score: 31.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Unable to calculate vocabulary similarity
Last synced: 10 months ago
·
JSON representation
·
Repository
Basic Info
- Host: GitHub
- Owner: agbocsardi
- Language: Jupyter Notebook
- Default Branch: main
- Size: 2.05 MB
Statistics
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
- Releases: 0
Created over 2 years ago
· Last pushed almost 2 years ago
Metadata Files
Readme
Citation
README.md
beliefnetworkscrape
Owner
- Name: A.G. Bocsardi
- Login: agbocsardi
- Kind: user
- Repositories: 1
- Profile: https://github.com/agbocsardi
Citation (citation_network.Rmd)
---
title: "Citation Network"
author: "A.G. Bocsardi"
date: "2023-11-09"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
setwd('/Users/bocsar000/Documents/projects/scopus_scrape')
```
# Load data
```{r}
library(igraph)
# Load data
setwd('/Users/bocsar000/Documents/projects/scopus_scrape/')
node_attributes <- na.omit(read.csv("data/node_covars.csv", stringsAsFactors = FALSE))
edge_list <- read.csv("data/edge_list.csv", stringsAsFactors = FALSE)
# Create a graph from the edge list
g <- graph_from_data_frame(d=edge_list, directed=TRUE)
vertex_names <- V(g)$name
```