Skip to content
#

networks

Here are 730 public repositories matching this topic...

themarwhal
themarwhal commented Apr 11, 2022

Now that the Magma Python version has been upgraded to 3.8, we can clean up our NamedTuple usages to look a little nicer.

Suggested Changes

Instead of declaring NamedTuple like this,

DiskPartition = NamedTuple(
    'DiskPartition',
    [
        ('device', str), ('mount_point', str), ('total', int), ('used', int),
        ('free', int),
    ],
)

we can do the followi

good first issue
loftusa
loftusa commented Nov 14, 2021

in networkplot, the x-axis and y-axis are labeled x and y by default.

I feel like in most situations that shouldn't be there? usually if you're making a networkplot and x and y coordinate axis don't make any sense, since you're in network space, not euclidean space
<img width="678" alt="Screen Shot 2021-11-14 at 6 44 50 PM" src="https://user-images.githubusercontent.com/12386450/141703620-ad4f

enhancement good first issue small

Improve this page

Add a description, image, and links to the networks topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the networks topic, visit your repo's landing page and select "manage topics."

Learn more