View source: R/export.pajek.net.R
export.pajek.net | R Documentation |
A basic tool for exporting a network as a Pajek http://mrvar.fdv.uni-lj.si/pajek/ .net format http://mrvar.fdv.uni-lj.si/pajek/DrawEPS.htm text file. Does not yet encode attributes, layout information or timing info.
export.pajek.net(net, filename)
net |
a network object |
filename |
the file where the network object should be saved |
.net is basically an edgelist format with sections for vertices, arcs and edges. Vertex attributes for 'label', coordinates named 'x','y','z', 'color' as 'ic' (inner color), 'shape' as a shape value will be written in the appropriate Pajek format. An edge attribute of 'weight' will be written as the edge value, 'width' as 'w' and 'color' as 'c'. See read.paj
for reading pajek files (time info supported)
A file is written out containing the vertex and edge data.
This is a very minimal implementation, mostly used for testing layout algorithms. Timing information is not yet supported.
Skye Bender-deMoll
Pajek software: http://mrvar.fdv.uni-lj.si/pajek/
Pajek file format documentation: http://vlado.fmf.uni-lj.si/pub/networks/pajek/svganim/1.10.7.1/PajekToSvgAnim.pdf
data('toy_epi_sim')
toy_epi_sim%v%'color'<-'blue'
export.pajek.net(toy_epi_sim,filename='toy_epi_sim.net')
# clean up file afterwards (just for testing)
file.remove('toy_epi_sim.net')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.