Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

Revision c80b73102b44a867701a8fa3eb0dd51a7fab5592 authored by Samrachana Adhikari on 26 May 2018, 21:01:51 UTC, committed by cran-robot on 26 May 2018, 21:01:51 UTC
version 0.8
1 parent 2fc8c4f
  • Files
  • Changes
  • 20b9cc5
  • /
  • R
  • /
  • covFunction.R
Raw File Download

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • revision
  • directory
  • content
revision badge
swh:1:rev:c80b73102b44a867701a8fa3eb0dd51a7fab5592
directory badge
swh:1:dir:1c7c28f750efeb0158ec887d3cce52071e844ac6
content badge
swh:1:cnt:54c9a8c1c2b83ecc21727a9f990466d8ec8dc19c

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • revision
  • directory
  • content
(requires biblatex-software package)
Generating citation ...
(requires biblatex-software package)
Generating citation ...
(requires biblatex-software package)
Generating citation ...
covFunction.R

##input: X is a dataframe with

##	1st column as a vector of network id and is named 'id'

##	2nd column has names of the node



getReceiverCov = function(X,nnodes,nodenames){

	if(all(dimnames(X)[[2]] != 'id')){stop('network id is not provided. Use name id to name the first column of X')}

	if(all(dimnames(X)[[2]] != 'Node')){stop('Nodes are not provided. Use nameNode for the second column')}



	netlist = unique(X$id)

	XX = list()

	PP = dim(X)[2] - 2

	for(ii in 1:length(netlist)){

		XX[[ii]] = array(0, dim = c(nnodes[ii],nnodes[ii],PP))

		Xsm = X[which(X$id == netlist[ii]),]

		KK = unique(Xsm$Node)

		if(length(KK) != nnodes[ii])(warning('Missing data replaced by 0'))

		dimnames(XX[[ii]])[[1]] = dimnames(XX[[ii]])[[2]] = nodenames[[ii]]

		x1 = which(dimnames(Xsm)[[2]] == 'id')

		x2 = which(dimnames(Xsm)[[2]] == 'Node')

		for(kk in 1:length(KK)){

			k1 = which(nodenames[[ii]] == KK[kk])

			XX[[ii]][,k1,] = sapply(1:PP,function(x)rep(as.numeric(Xsm[which(Xsm$Node==KK[kk]),-c(x1,x2)][x]),nnodes[ii]))

	}

	}

	return(XX)

}





getSenderCov = 	function(X,nnodes,nodenames){

	if(all(dimnames(X)[[2]] != 'id')){stop('network id is not provided. Use name id to name the first column of X')}

	if(all(dimnames(X)[[2]] != 'Node')){stop('Nodes are not provided. Use nameNode for the second column')}



	netlist = unique(X$id)

	XX = list()

	PP = dim(X)[2] - 2

	for(ii in 1:length(netlist)){

		XX[[ii]] = array(0, dim = c(nnodes[ii],nnodes[ii],PP))

		Xsm = X[which(X$id == netlist[ii]),]

		KK = unique(Xsm$Node)

		if(length(KK) != nnodes[ii])(warning('Missing data replaced by 0'))

		dimnames(XX[[ii]])[[1]] = dimnames(XX[[ii]])[[2]] = nodenames[[ii]]

		x1 = which(dimnames(Xsm)[[2]] == 'id')

		x2 = which(dimnames(Xsm)[[2]] == 'Node')

		for(kk in 1:length(KK)){

			k1 = which(nodenames[[ii]] == KK[kk])

			Xind = which(Xsm$Node==KK[kk])

			for(ll in 1:PP){

			    XX[[ii]][k1,,ll] = rep(as.numeric(Xsm[Xind,

						-c(x1,x2)][ll]),nnodes[ii]) }

	}

	}

	return(XX)

}



getEdgeCov = function(X,nnodes,nodenames){

	if(all(dimnames(X)[[2]] != 'id')){stop('network id is not provided. Use name id to name the first column of X')}

	if(all(dimnames(X)[[2]] != 'Sender')){stop('Sender nodes are not provided. Use name Sender for the second column')}

	if(all(dimnames(X)[[2]] != 'Receiver')){stop('Receiver nodes are not provided. Use name Receiver for the third column')}

	netlist = unique(X$id)

	XX = list()

	PP = dim(X)[2] - 3

	for(ii in 1:length(netlist)){

		XX[[ii]] = array(0, dim = c(nnodes[ii],nnodes[ii],PP))

		Xsm = X[which(X$id == netlist[ii]),]

		KK = unique(c(Xsm$Receiver,Xsm$Sender))

		if(length(KK) != nnodes[ii])(warning('Missing data replaced by 0'))

		dimnames(XX[[ii]])[[1]] = dimnames(XX[[ii]])[[2]] = nodenames[[ii]]

		KK1 = Xsm$Sender

		KK2 = Xsm$Receiver

		x1 = which(dimnames(Xsm)[[2]] == 'id')

		x2 = which(dimnames(Xsm)[[2]] == 'Sender')

		x3 = which(dimnames(Xsm)[[2]] == 'Receiver')

		for(kk in 1:nrow(Xsm)){		

			k1 = which(nodenames[[ii]] == KK1[kk])

			k2 = which(nodenames[[ii]] == KK2[kk])

			XX[[ii]][k1,k2,] = as.numeric(Xsm[kk,-c(x1,x2,x3)])

	}

	}

	return(XX)

}








The diff you're trying to view is too large. Only the first 1000 changed files have been loaded.
Showing with 0 additions and 0 deletions (0 / 0 diffs computed)
swh spinner

Computing file changes ...

back to top

Software Heritage — Copyright (C) 2015–2026, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Content policy— Contact— JavaScript license information— Web API