Masthash

#graph

Rémi Eismann
8 hours ago

One day, one decomposition
A014011: Defined by a chi-inequality greedy algorithm

3D graph #threejs #webGL ➡️ https://decompwlj.com/3Dgraph/A014011.html
2D #graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A014011.html

#decompwlj #math #mathematics #sequence #OEIS #javascript #php #3D #numbers #algorithm

Decomposition into weight × level + jump of A014011 in 2D (log(weight), log(level))
Decomposition into weight × level + jump of A014011 in 3D (threejs - WebGL) (log(weight), log(level), log(jump))
Rémi Eismann
1 day ago

One day, one decomposition
A013939: Partial sums of sequence A001221 (number of distinct primes dividing n)

3D graph #threejs #webGL ➡️ https://decompwlj.com/3Dgraph/A013939.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A013939.html

#decompwlj #math #mathematics #sequence #OEIS #javascript #php #3D #numbers #omega #graph

Decomposition into weight × level + jump of A013939 in 2D (log(weight), log(level))
Decomposition into weight × level + jump of A013939 in 3D (threejs - WebGL) (log(weight), log(level), log(jump))
Published papers at TMLR
2 days ago

Graph Neural Networks Designed for Different Graph Types: A Survey

Josephine Thomas, Alice Moallemy-Oureh, Silvia Beddar-Wiesing, Clara Holzhüter

https://openreview.net/forum?id=h4BYtZ79uy

#graphs #graph #gnn

Rémi Eismann
2 days ago

One day, one decomposition
A013917: a(n) is prime and sum of all primes <= a(n) is prime

3D graph #threejs #webGL ➡️ https://decompwlj.com/3Dgraph/A013917.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A013917.html

#decompwlj #math #mathematics #sequence #OEIS #javascript #php #3D #numbers #sum #primes #primenumbers #graph

Decomposition into weight × level + jump of A013917 in 2D (log(weight), log(level))
Decomposition into weight × level + jump of A013917 in 3D (threejs - WebGL) (log(weight), log(level), log(jump))
WACOCA
3 days ago
【blt graph.】blt graph.vol.87 中村舞(STU48)撮影メイキング動画
Rémi Eismann
3 days ago

One day, one decomposition
A013916: Numbers k such that the sum of the first k primes is prime

3D graph #threejs #webGL ➡️ https://decompwlj.com/3Dgraph/A013916.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A013916.html

#decompwlj #math #mathematics #sequence #OEIS #javascript #php #3D #numbers #sum #first #primes #primenumbers #graph

Decomposition into weight × level + jump of A013916 in 2D (log(weight), log(level))
Decomposition into weight × level + jump of A013916 in 3D (threejs - WebGL) (log(weight), log(level), log(jump))
Rémi Eismann
4 days ago

One day, one decomposition
A011775: Numbers k such that k divides phi(k) * sigma(k)

3D graph #threejs #webGL ➡️ https://decompwlj.com/3Dgraph/A011775.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A011775.html

#decompwlj #math #mathematics #sequence #OEIS #javascript #php #3D #numbers #divides #phi #sigma #graph

Decomposition into weight × level + jump of A011775 in 2D (log(weight), log(level))
Decomposition into weight × level + jump of A011775 in 3D (threejs - WebGL) (log(weight), log(level), log(jump))
Rémi Eismann
5 days ago
Decomposition into weight × level + jump of A011540 in 2D (log(weight), log(level))
Decomposition into weight × level + jump of A011540 in 3D (threejs - WebGL) (log(weight), log(level), log(jump))
Rémi Eismann
6 days ago

One day, one decomposition
A011539: "9ish numbers": decimal representation contains at least one nine

3D graph #threejs #webGL ➡️ https://decompwlj.com/3Dgraph/A011539.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A011539.html

#decompwlj #math #mathematics #sequence #OEIS #javascript #php #3D #numbers #contain #digit #graph

Decomposition into weight × level + jump of A011539 in 2D (log(weight), log(level))
Decomposition into weight × level + jump of A011539 in 3D (threejs - WebGL) (log(weight), log(level), log(jump))
Rémi Eismann
1 week ago
Decomposition into weight × level + jump of A011533 in 2D (log(weight), log(level))
Decomposition into weight × level + jump of A011533 in 3D (threejs - WebGL) (log(weight), log(level), log(jump))
Stoic
1 week ago

Hello everyone!

In today's post, we'll discuss the data modeling and schema design for our Golang project, which focuses on analyzing a marketplace's purchase data. This analytical application will help us understand the relationships between sellers, products, and customers, as well as feedback provided by customers on their purchases. The marketplace operates in various locations, including countries and states.

Let's dive into the details of the data schema:

Node types:

Location: Represents a country or a state.

Seller: Contains attributes such as name, locations where the seller offers products, and feedback scores.

Product: Includes attributes like ID, price, and a relationship to its seller.

Customer: Has attributes like ID, location, and represents clients who ordered products and optionally provided feedback on their purchases.

Relationships:

Seller to Location: A many-to-many relationship, indicating the locations where a seller offers their products.

Product to Seller: A many-to-one relationship, connecting each product to its respective seller.

Customer to Product: A many-to-many relationship, representing the products purchased by customers.

Customer to Product (Feedback): A many-to-many relationship, where customers can provide feedback on the products they purchased.

With these node types and relationships in place, we can efficiently model our analytical application about marketplace purchases in a graph database. In the following posts, we'll explore different graph databases and evaluate how well they can handle our data model, in terms of installation, code samples, and performance.

Stay tuned for our next post, where we'll dive into EdgeDB and explore its potential for our Golang project. See you there!

```
classDiagram
Location "1" -- "many" Seller : Offers Products In
Seller "1" -- "many" Product : Sells
Customer "many" -- "many" Product : Purchased
Customer "many" -- "many" Product : Gave Feedback On

class Location {
+ID: Integer
+Name: String
}

class Seller {
+ID: Integer
+Name: String
+FeedbackScore: Float
}

class Product {
+ID: Integer
+Price: Float
}

class Customer {
+ID: Integer
+Location: String
}

Purchased --|> Customer
Purchased --|> Product
class Purchased {
+Count: Integer
}

GaveFeedbackOn --|> Customer
GaveFeedbackOn --|> Product
class GaveFeedbackOn {
+Score: Float
}
```

Copy the code above and paste it into the Mermaid Live Editor (https://mermaid-js.github.io/mermaid-live-editor/) or any other Mermaid-compatible diagramming tool to generate the updated schema diagram

#golang #graph #data_modeling #schema_design #edgedb #neo4j #dgraph

Pierre Lindenbaum
1 week ago

I'm looking at #vg again . It's quite hard to find a good up-to-date tutorial/workflow somewhere. Any pointer ?

#graph #bioinformatics

Rémi Eismann
1 week ago
Decomposition into weight × level + jump of A011532 in 2D (log(weight), log(level))
Decomposition into weight × level + jump of A011532 in 3D (threejs - WebGL) (log(weight), log(level), log(jump))
Rémi Eismann
1 week ago
Decomposition into weight × level + jump of A011531 in 2D (log(weight), log(level))
Decomposition into weight × level + jump of A011531 in 3D (threejs - WebGL) (log(weight), log(level), log(jump))

I wonder what the fedimap looks like. If we made a graph where every node is a fedi instance, and every node is connected to every other node EXCEPT where federation has actually been blocked between instances, what would be the resulting graph?

#fedimeta #graph

Rémi Eismann
1 week ago

One day, one decomposition
A011257: Geometric mean of phi(n) and sigma(n) is an integer

3D graph #threejs #webGL ➡️ https://decompwlj.com/3Dgraph/A011257.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A011257.html

#decompwlj #math #mathematics #sequence #OEIS #javascript #php #3D #numbers #phi #sigma #graph

Decomposition into weight × level + jump of A011257 in 2D (log(weight), log(level))
Decomposition into weight × level + jump of A011257 in 3D (threejs - WebGL) (log(weight), log(level), log(jump))
Stoic
2 weeks ago

Hello everyone!

In this blog series, we’re going to explore various graph databases for a Golang project I’m currently working on.

The project requires a cloud-native graph database.

Our use case involves a small schema with a massive amount of data, millions of new edges inserted daily, and sub-second query times for interactive user engagement.
We will talk more about the schema in the next post.

Over the following days, we’ll dive into different graph databases, test installations, code samples, and benchmark results. We’ll kick off our journey with four popular graph databases: EdgeDB, Neo4J, and Dgraph.

Let’s start with a brief overview of our project requirements and the plan for the upcoming blog posts:

Project Requirements:

Cloud-native graph database
Quite small schema with a huge amount of data
Data-intensive for writing, tens million of new edges daily
Sub-second query times for reading, interactive user engagement

Approximate plan:

Task description and plan (today’s post)
Schema discussion and data modeling
Diving into EdgeDB
Evaluating Neo4J
Assessing Dgraph
Considering other options.

By the end of the series, we’ll have a deeper understanding of the strengths and weaknesses of each option, and ultimately make an informed decision on the best fit for our Golang project.

Now, I’d love to hear from you! What are your favorite graph databases, and why? If there’s a specific database you’d like us to consider, please let us know in the comments below. I’m open to suggestions and eager to learn from your experiences.

#golang #graph #dgraph #edgedb #neoj4

updated after hitting 10 million mastodon users!

also the "mastodonusercount" account moved to a new instance so I had to find it, and I also found the previous account, so now the data goes back to 2017

also also I put all the code to generate the graph in a git repo: https://codeberg.org/johanvandegriff/mastodon-users-graph

#graph #10million #mastodon #users #ElongatedOctober

2 million in 2008. a spike of gab users in 2019 that all got banned. steadily growing from 4 million in 2020 to 5 million in 2022, then a massive spike at the end bringing it to 10 million.
Rémi Eismann
2 weeks ago
Decomposition into weight × level + jump of A010784 in 2D (log(weight), log(level))
Decomposition into weight × level + jump of A010784 in 3D (threejs - WebGL) (log(weight), log(level), log(jump))
Rémi Eismann
2 weeks ago

One day, one decomposition
A010064: Base 4 self or Colombian numbers (not of form n + sum of base 4 digits of n)

3D graph #threejs #webGL ➡️ https://decompwlj.com/3Dgraph/A010064.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A010064.html

#decompwlj #math #mathematics #sequence #OEIS #javascript #php #numbers #3D #sum #base #digits #graph

Decomposition into weight × level + jump of base 4 self or Colombian numbers in 2D (log(weight), log(level))
Decomposition into weight × level + jump of base 4 self or Colombian numbers in 3D (threejs - WebGL) (log(weight), log(level), log(jump))
Rémi Eismann
2 weeks ago

My first, favorite and most important sequence, the weights of prime numbers
⬇️
http://oeis.org/A117078

We see prime numbers classified by level and by weight on the graph.

This sequence has led to the decomposition into weight × level + jump ➡️ https://oeis.org/wiki/Decomposition_into_weight_*_level_%2B_jump

#decompwlj #math #sequences #OEIS #PrimeNumbers #classification #mathematics #primes #numbers #graph #decomposition #Numbertheory

Screen shot of A117078 on the OEIS: a(n) is the smallest k such that prime(n+1) = prime(n) + (prime(n) mod k), or 0 if no such k exists.
Graphs on the OEIS of A117078 (the weights of prime numbers) pin plot and logarithmic scatterplot
Rémi Eismann
2 weeks ago

One day, one decomposition
A010061: Binary self or Colombian numbers: numbers that cannot be expressed as the sum of distinct terms of the form 2^k+1 (k>=0), or equivalently, numbers not of form m + sum of binary digits of m

3D graph #threejs #webGL ➡️ https://decompwlj.com/3Dgraph/Binary_self_numbers.html
2D #graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/Binary_self_numbers.html

#decompwlj #math #mathematics #sequence #OEIS #javascript #php #3D #numbers #sum #binary #digits #graph

Decomposition into weight × level + jump of Binary self or Colombian numbers in 2D (log(weight), log(level))
Decomposition into weight × level + jump of Binary self or Colombian numbers in 3D (threejs - WebGL) (log(weight), log(level), log(jump))
Michael Simons
2 weeks ago

I’ll be part of the #Bucharest #Techweek in Romania as part of their #Java summit https://www.techweek.ro/java-summit and I’ll discuss an old topic: #database #refactorings and #migrations and why these things make a lot of sense for a #Graph database like #neo4j that is not so schemaless like you would think.

Knowledge Zone
2 weeks ago

#ITByte: A #Knowledge #Graph, also known as a semantic network, represents a network of real-world entities—i.e. objects, events, situations, or concepts—and illustrates the relationship between them.

This information is usually stored in a graph database and visualized as a graph structure, prompting the term knowledge “graph.”

https://knowledgezone.co.in/trends/explorer?topic=Knowledge-Graph

Rémi Eismann
2 weeks ago

One day, one decomposition
A009177: #Numbers that are the hypotenuses of more than one Pythagorean triangle

3D graph #threejs #webGL ➡️ https://decompwlj.com/3Dgraph/A009177.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A009177.html

#decompwlj #math #mathematics #sequence #OEIS #javascript #php #3D #numbers #hypotenuses #Pythagorean #triangle #graph

Decomposition into weight × level + jump of A009177 in 2D (log(weight), log(level))
Decomposition into weight × level + jump of A009177 in 3D (threejs - WebGL) (log(weight), log(level), log(jump))
🌈 Lascapi
2 weeks ago

@damienvidal >Pour fonctionner, #Microsoft 365 #Copilot combine trois technologies :
>1. Les applications Microsoft 365 que vous connaissez déjà....
>2. Le « Microsoft #Graph » qui représente votre contenu et le contexte dans lequel il est partagé. Cela peut comprendre vos emails, documents, réunions, conversations, calendrier, etc.
>3. Un « Large modèle de langage » (LLM) qui est un moteur de création de texte...

// Le point 2 peut être extrêment puissant !!! 😱🤯

Christian Tietze
2 weeks ago

Personal Knowledge Management is Bullshit https://www.otherlife.co/pkm/

At first, I didn't think much of this polemic against #pkm #graph apps like #RoamResearch;

But reading this, the metaphor of the "gardener' and the need to "prune" the "tree of knowledge" imposed itself upon me, so it was valuable:

#Zettelkasten as "digital gardening" requires conscious effort. That's the pruning.

Jerven
2 weeks ago

#RDFLob version 6.3.0 is out. We use it a lot in #python #jupyternotebook for analyzing data in the different #SwissProt #SPARQL #graph #databases. https://pypi.org/project/rdflib/6.3.0/

Rémi Eismann
2 weeks ago

One day, one decomposition
A009112: Areas of Pythagorean triangles: numbers which can be the area of a right-angled triangle with integer sides

3D graph #threejs #webGL ➡️ https://decompwlj.com/3Dgraph/A009112.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A009112.html

#decompwlj #math #mathematics #sequence #OEIS #javascript #php #3D #numbers #area #Pythagorean #triangles #graph

Decomposition into weight × level + jump of A009112 in 2D (log(weight), log(level))
Decomposition into weight × level + jump of A009112 in 3D (threejs - WebGL) (log(weight), log(level), log(jump))
WACOCA
2 weeks ago

STU48 沖侑果 絶賛発売中のblt graph vol 86に登場!撮影メイキング動画 https://www.wacoca.com/videos/1665193/stu48/

#86に登場撮影メイキング動画 #graph #STU48 #Vlog #Vol #沖侑果 #絶賛発売中のblt

STU48 沖侑果 絶賛発売中のblt graph vol 86に登場!撮影メイキング動画
Rémi Eismann
2 weeks ago

One day, one decomposition
A008917: Numbers that are the sum of 3 positive cubes in more than one way

3D graph #threejs #webGL ➡️ https://decompwlj.com/3Dgraph/A008917.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A008917.html

#decompwlj #math #mathematics #sequence #OEIS #javascript #php #3D #numbers #sum #cubes #graph

Decomposition into weight × level + jump of A008917 in 2D (log(weight), log(level))
Decomposition into weight × level + jump of A008917 in 3D (threejs - WebGL) (log(weight), log(level), log(jump))
(((@amarois)))
3 weeks ago

"Wikidata et bibliothèques de l'enseignement supérieur", aux #jabes22.
Fameuse pédagogie de N. Vigneron 👍 !
https://youtu.be/-AE-wWR3kRo
#ESR #wikidata #linkeddata #semanticweb #graph #metadata #enseignementsuperieur #SPARQL #RDF #identifiers #data

Danilo Poccia
3 weeks ago

Amazon Neptune introduces graph summary API 👉 Quickly gain insights on graph data size and content by reading the count of nodes, edges, subjects, or predicates as well as labels and classes 👏 https://aws.amazon.com/about-aws/whats-new/2023/03/amazon-neptune-graph-summary-api/ #AWS #Database #Graph h

Rémi Eismann
3 weeks ago
Decomposition into weight × level + jump of A008851 in 2D (log(weight), log(level))
Decomposition into weight × level + jump of A008851 in 3D (threejs - WebGL) (log(weight), log(level), log(jump))
Rémi Eismann
3 weeks ago

One day, one decomposition
A008846: Hypotenuses of primitive Pythagorean triangles

3D graph #threejs #webGL ➡️ https://decompwlj.com/3Dgraph/A008846.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A008846.html

#decompwlj #math #mathematics #sequence #OEIS #javascript #php #3D #numbers #triangles #graph

Decomposition into weight × level + jump of A008846 in 2D (log(weight), log(level))
Decomposition into weight × level + jump of A008846 in 3D (threejs - WebGL) (log(weight), log(level), log(jump))
Leo Petrov ☑️
3 weeks ago

Nothing major, just tan of z^3. Real part of it #math #graph

real part of tan(z^3)
Rémi Eismann
3 weeks ago
Decomposition into weight × level + jump of A008810 in 2D (log(weight), log(level))
Decomposition into weight × level + jump of A008810 in 3D (threejs - WebGL) (log(weight), log(level), log(jump))
Davy :ferris:
3 weeks ago

I've just released a new version of Hypergraph :ferris: 🚀 🎉 !

This library uses IndexMap to keep the insertion order of the vertices and the hyperedges in the hypergraph - the goal is to have unique IDs. It appears that IndexMap doesn't use a fast hasher (https://github.com/bluss/indexmap/issues/135) like aHash - which is used by the hashmap implementation we have in std.

By switching to aHash, we get a significant performance boost!

https://github.com/yamafaktory/hypergraph/pull/42

https://crates.io/crates/hypergraph/2.1.0

#rust #rustlang #graph #data

Rémi Eismann
3 weeks ago

My first, favorite and most important sequence, the weights of prime numbers
⬇️
http://oeis.org/A117078

We see prime numbers classified by level and by weight on the graph.

This sequence has led to the decomposition into weight × level + jump ➡️ https://oeis.org/wiki/Decomposition_into_weight_*_level_%2B_jump

#decompwlj #math #sequences #OEIS #PrimeNumbers #classification #mathematics #primes #numbers #graph #decomposition #Numbertheory

Screen shot of A117078 on the OEIS: a(n) is the smallest k such that prime(n+1) = prime(n) + (prime(n) mod k), or 0 if no such k exists.
Graphs on the OEIS of A117078 (the weights of prime numbers) pin plot and logarithmic scatterplot
Jon Udell
3 weeks ago

"I had a hunch that relationship graphs would reveal non-obvious connections among these servers. And indeed they do! "

https://www.infoworld.com/article/3690268/visualizing-mastodon-server-moderation.html

#steampipe #mastodon #moderation #graph

ts thank you ☕
3 weeks ago

So this is 🤓 but I’m revisiting #math 🧮

and I found something interesting. Look at these three different equations from far out and two of them look more similar. Get closer to x = 0 and it’s flipped.

#graph #learning #tool

Three equations graphed: y equals the absolute value of x; y equals square root of x, and y equals the absolute value of x PLUS the square root of x
Three equations graphed: y equals the absolute value of x; y equals square root of x, and y equals the absolute value of x PLUS the square root of x (zoomed in)
Peter Czanik
4 weeks ago

One of the things I miss from #Mastodon is #analytics: seeing if my posts are making an impact. Even if I'm not a manager, I love graphs :-)

Here is a fun #graph for the #engagement rate of my Twitter posts, when I skip posting for a few days, and a friend likes my last few posts 😉

ZhiZhu
1 month ago

"But the motivations for the incidents remain lopsided. In the past five years, there have been three deaths linked to left-wing extremists. There have been 176 linked to right-wing ones."
https://www.washingtonpost.com/politics/2023/02/28/extremism-right-wing-deaths/

#Extremists #Extremism #Violence #Graph #RightWing #GOP #Republicans #LeftWing #Democrats #USPolitics #USA #DomesticTerrorism

Text and graph from article:

Text: But the motivations for the incidents remain lopsided. In the past five years, there have been three deaths linked to left-wing extremists. There have been 176 linked to right-wing ones.

The only reason that right-wing extremists aren’t responsible for a greater percentage of deaths in the past decade is because of extremists acting in response to a radical Islamist ideology. If we consider only left- and right-wing extremists in the past decade, 95 percent of deaths tracked by the ADL are a function of right-wing extremists.

Graph shows "Deaths linked to extremism" from 2013 to 2022. There are only a very few deaths linked to left-wing extremism. There are a number of deaths linked to Domestic Islamist extremist, but the VAST majority of deaths are linked to right-wing extremists.
Danilo Poccia
1 month ago

Amazon Neptune Serverless now scales down to 1 NCU to save costs 👉 This brings down the costs by up to 2.5X when the graph database is not actively responding to user queries 👏 https://aws.amazon.com/about-aws/whats-new/2023/03/amazon-neptune-serverless-scales-down-1-ncu-costs/ #AWS #Database #Serverless #Graph

ZhiZhu
1 month ago

@tzimmer_history

If you think that there is far more right-wing linked violence in the US than left-wing linked violence. You are correct.

"Over the past decade... 96 percent of incidents in which extremists killed someone were committed by people motivated by right-wing ideologies. More than three-quarters of the resulting deaths — 335 of 444 — were linked to right-wing actors."
~@pbump
https://www.washingtonpost.com/politics/2023/02/28/extremism-right-wing-deaths/

#Extremists #Extremism #Violence #Graph #RightWing #GOP #USPolitics #USA

Text and graph from article:

Text: Data released by the ADL last week shows the reality. Over the past decade (the period included in YouGov’s poll), 96 percent of incidents in which extremists killed someone were committed by people motivated by right-wing ideologies. More than three-quarters of the resulting deaths — 335 of 444 — were linked to right-wing actors.

Graph showing Extremist linked deaths from 2013 to 2022.

One circle shows "incidents" which is almost completely red (for right-wing extremist) with a very small slice of orange (Domestic Islamist extremist) and an even small slice of blue (Left-wing extremist). There is a teeny-tiny sliver of gray (other).

The other circle shows "Killings."  A little over 3/4 of the circle is red (right-wing extremists). About 1/5 of the circle is orange (Domestic Islamist extremist). There is a very small slice of blue (left-wing extremist) and sliver of gray (other).

Source: ADL analysis
https://www.washingtonpost.com/politics/2023/02/28/extremism-right-wing-deaths/
ZhiZhu
1 month ago

"Over the past decade (the period included in YouGov’s poll), 96 percent of incidents in which extremists killed someone were committed by people motivated by right-wing ideologies. More than three-quarters of the resulting deaths — 335 of 444 — were linked to right-wing actors."
~@pbump
https://www.washingtonpost.com/politics/2023/02/28/extremism-right-wing-deaths/

#Extremists #Extremism #Violence #Graph #RightWing #GOP #Republicans #LeftWing #Democrats #USPolitics #USA #DomesticTerrorism

Text and graph from article:

Text: Data released by the ADL last week shows the reality. Over the past decade (the period included in YouGov’s poll), 96 percent of incidents in which extremists killed someone were committed by people motivated by right-wing ideologies. More than three-quarters of the resulting deaths — 335 of 444 — were linked to right-wing actors.

Graph showing Extremist linked deaths from 2013 to 2022.

One circle shows "incidents" which is almost completely red (for right-wing extremist) with a very small slice of orange (Domestic Islamist extremist) and an even small slice of blue (Left-wing extremist). There is a teeny-tiny sliver of gray (other).

The other circle shows "Killings."  A little over 3/4 of the circle is red (right-wing extremists). About 1/5 of the circle is orange (Domestic Islamist extremist). There is a very small slice of blue (left-wing extremist) and sliver of gray (other).

Source: ADL analysis
🌈 Lascapi
1 month ago

Je suis tombé sur cette présentation qui m'aide bien à mettre git "dans le bon sens" !!

La théorie des graphes appliquée à Git
#dev #graph #math #presentation #git
https://speakerdeck.com/ubermuda/la-theorie-des-graphes-appliquee-a-git

n8chz ⒶⒺ
1 month ago

@fediversereport I voted small f as it's unclear to me whether the social #graph (or federation graph, or for that matter defederation graph) of the fediverse stack is disjoint. Given the resistance shown by #fediverse networks to indexing, I suppose it might not even be an answerable question.

Knowledge Zone
1 month ago

#ITByte: #Graph #MachineLearning (GML) is a rapidly growing field that combines the power of machine learning with the representation of data in the form of graphs.

https://knowledgezone.co.in/trends/explorer?topic=Graph-ML

Nullmuseum
1 month ago

Discussing the future of #collaborative #graph thinking.

"I guess one upcoming incentive for #semanticweb tech could be archiving and note keeping. For those that encounter so much info on feeds this could provide better private and collaborative means to collect stuff: ordering, selecting, describing, developing. I am thinking of the experience of using pinterest, #tumblr, #pinboard #obsidian, etc. as kind of cross-platform extensions to feeds and online collections."

I was in particular thinking of the pinboards and are.na walls of scholars like @shannonmattern @lozross and @miriamkp, which I see as examples of a scholarly practice of using boards/hashtags to build archives of posts and links.

Open semantic data in this field would mean freeing data from the feeds in more sustainable ways, beyond public bookmarks. #reclaimyourarchive

Screenshot of a Mastodon post and reply.

First post. Denny Vrandecic: Those are very relevant observations, and this leads to the one large question the Semantic Web never answered: how does the incentive infrastructure look like? The few parts of the Semantic Web that provided a decent answer to that question were the ones that were successful: schema.org, Wikidata and the wider GLAM world, usage inside emails, inside organizations as a data integration technology.

Second post. Lukas Fuchsgruber: Very interesting debate, | guess one upcoming incentive for semantic tech could be archiving and notekeeping. Fort those that encounter info in feeds this could provide better private and collaborative means to collect stuff: ordering, selecting, describing, developing. I am thinking of the experience of using pinterest, tumblr, pinboard, obsidian, etc. as kind of cross-platform extensions to feeds and online collections.
CryptoNewsBot
1 month ago

Ongoing Correction Sets Graph Price For 10% Drop; Should You Enter This Dip? - After an explosive rally in early February, the Graph token price went through a c... - https://coingape.com/markets/ongoing-correction-sets-graph-price-for-10-drop-should-you-enter-this-dip/ #graphpriceanalysis #priceanalysis #unitedstates #graph

Danilo Poccia
1 month ago

Use semantic reasoning to infer new facts from your RDF graph by integrating RDFox with Amazon Neptune 👉 With an example Formula 1 racing dataset published by the Ergast Developer API https://aws.amazon.com/blogs/database/use-semantic-reasoning-to-infer-new-facts-from-your-rdf-graph-by-integrating-rdfox-with-amazon-neptune/ #AWS #Graph #Database

Viiri
1 month ago

I love the interface of #excalidraw and the quality and look of drawings it produces. I don't love the hassle of file management with the free version, or paying $7/month to store graphs in their cloud. Are there any similarly straightforward #graph #drawing programs with better local storage? Draw.io is great but not really the same.

Rémi Eismann
1 month ago

One day, one decomposition
A007066: a(n) = 1 + ceiling((n-1)*phi^2), phi = (1+sqrt(5))/2

3D graph #threejs #webGL ➡️ https://decompwlj.com/3Dgraph/A007066.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A007066.html

#decompwlj #math #mathematics #sequence #OEIS #javascript #php #3D #numbers #ceiling #phi #sqrt #graph

Decomposition into weight × level + jump of A007066 in 2D (log(weight), log(level))
Decomposition into weight × level + jump of A007066 in 3D (threejs - WebGL) (log(weight), log(level), log(jump))
Kingsley Uyi Idehen
1 month ago

@hrefna,

There’s a subtle difference between a #network and a #graph.

Nodes in a network represent entities of a specific type, connected by a specific entity relationship type. That restriction doesn’t apply to a graph.

The World Wide Web (#Web) is a document network while a #SemanticWeb is about a graph (hence the #KnowledgeGraph association) 😀

Leo Petrov ☑️
1 month ago

Do you see a phase transition? #math #graph

Graph of many math functions
Leo Petrov ☑️
1 month ago

Just love my determinantal process numerics! #math #determinantal #graph

Steven P. Sanderson II, MPH
1 month ago

Are you looking for an easy and efficient way to visualize your time series data? Look no further than the ts_ma_plot() function in the R package {healthyR.ts}.

See attached!

Post: https://lnkd.in/eHm-R4Di

#technology #innovation #software #softwareengineering #timeseries #visualization #graph #plots #xts #ggplot2 #r #rstats #opensource #opensourcesoftware #rprogramming #movingaverage #finance

Amy B
1 month ago

Do you need a graph database that can handle large volumes of data, scale up quickly and perform fast graph analytics? If so, check out NebulaGraph's #dockerextension!

https://hub.docker.com/extensions/weygu/nebulagraph-dd-ext

#docker #opensource #database #graph

NebulaGraph's Docker Extension Screenshot
CryptoNewsBot
1 month ago

Graph Token Price Back On Recovery Track Aims For 20% Upswing - The crypto market turned strongly bullish in the last two days, as the January CPI... - https://coingape.com/markets/graph-token-price-back-on-recovery-track-aims-for-20-upswing/ #graphpriceanalysis #priceanalysis #unitedstates #graph

Danilo Poccia
2 months ago

Interesting solution 👉 Build a real-time fraud detection solution using Amazon Neptune ML https://aws.amazon.com/blogs/database/build-a-real-time-fraud-detection-solution-using-amazon-neptune-ml/ #AWS #Database #Graph #MachineLearning

Signed Graph Neural Networks: A Frequency Perspective

Rahul Singh, Yongxin Chen

https://openreview.net/forum?id=RZveYHgZbu

#graphs #sign #graph

Rémi Eismann
2 months ago

My first, favorite and most important sequence, the weights of prime numbers
⬇️
http://oeis.org/A117078

We see prime numbers classified by level and by weight on the graph.

This sequence has led to the decomposition into weight × level + jump ➡️ https://oeis.org/wiki/Decomposition_into_weight_*_level_%2B_jump

#decompwlj #math #sequences #OEIS #PrimeNumbers #classification #mathematics #primes #numbers #graph #decomposition

Screen shot of A117078 on the OEIS: a(n) is the smallest k such that prime(n+1) = prime(n) + (prime(n) mod k), or 0 if no such k exists.
Graphs on the OEIS of A117078 (the weights of prime numbers) pin plot and logarithmic scatterplot
Hans Brender, Mr.OneDrive
2 months ago

How to Deal with Common Errors when Running Graph Commands with PowerShell

Tony Redmond answers a whole bunch of questions to find out why they're having trouble running #PowerShell scripts with Graph. https://practical365.com/common-graph-api-errors-powershell/

📍 Getting the basics right for working with Graph API.
📍 It's PowerShell, so it's your code.
📍 A properly configured app is the key to avoiding Graph API errors
📍 It's not me, it's the app!
📍 Service principals
📍...

#Microsoft365 #PowerShell #Errors #Graph

Rolf Kleef
2 months ago

Ok, #graph databases at #fosdem, self-assigned homework: study "embeddings" in general, my "hand wavey" understanding isn't cutting it anymore :-) but working with HashGNN node embeddings in #Neo4J looks interesting.

ErrantScience
2 months ago

Seniority does strange things to a person’s willingness to follow proper H&S, as though deadly chemicals respect hierarchy #RealTimeChemistry #Lab #graph

Sir Rochard 'Dock' Bunson
2 months ago

@aka_quant_noir @CharJTF

Ding ding! Ya'll are so smart!

#Asymptote #Graph

Graph of an asymptote approaching but not reaching the x-axis
jonny
2 months ago

alright I'm about to start working on some #LinkedData / #Graph-based p2p stuff, I am gonna spend some time digging deeper into #SPARQL, and I'm wondering if anyone can point me to any writing (blogs, papers, posts all good) on the good and bad from both a design and implementation POV. I can read the docs, but would like to learn the meta surrounding it from starry-eyed idealists and cranky engineers alike. Boosts for visibility welcome :)

conputer dipshit
2 months ago

good news, looks like this fall’s very rough #flu season was an early peak and will not be a 4 month flupocalypse. I was optimistic (eventually everyone has to have gotten everything, right?) but I’m still relieved. it was not cool having the whole family sick every week #graph
https://www.cdc.gov/flu/weekly/index.htm

graph showing percentage of outpatient visits for respiratory illness for each year from 2017 to now, showing the 2022-2023 season peaking in November and declining after that, about two months earlier than they usually do
graph showing percentage of outpatient visits for respiratory illness for the 2022-2023 season, broken down by age. all age groups peaked in November and have been declining since, with pretty rapid declines in the past few weeks
Kevin Pennekamp
2 months ago

Finally updated my revised explanation of my graph layout algorithm, based on the last reported issues https://crinkles.io/writing/digl-revisited #typescript #writing #graph

Microsoft delays Outlook REST API deprecation until 2023 https://b.mamund.com/3XOPk9C

"users of the API are not ready to let go of it completely and switch to Microsoft Graph"

#api360 #REST #Graph

@davidshq That is what I was saying, but I've probably changed my mind already. I'm not giving up #emacs for notetaking, period. I'd love to add #markdown to my notes, if I can have a freefloating viewer updating in realtime as I edit. The #graph stuff in particular looks really helpful and cool. If #obsidian doesn't do that, or something else does it better, I'm there.

Defiance!
3 months ago

This interactive graph lets you explore the history and origins of all music genres. It can be a little difficult to use, but if you click the "Navigate" button on the left rail, you'll see how you can zoom all around and explore the relationships between music types.

#graph #tools #research #music

👉 https://musicmap.info/ 👈

Scottish Lass
4 months ago

Perl Advent Calendar 2022 - The Delivery Map
Using GraphViz2 #Perl #Graph
https://perladvent.org/2022/2022-12-12.html
https://metacpan.org/pod/GraphViz2

John Leonard
4 months ago

TomTom CTO reckons they've achieved a 'profound technical breakthrough' with graph databases for mapping... But we'll have to wait a few months to find out exactly what that is.

Also integrating #osm and #iot data into mapping platform.

https://www.computing.co.uk/news/4061062/tomtom-cto-weve-profound-technical-breakthrough

#TomTom #OpenData #OpenSource #gps #mapping #graph

Stumbled across a #fediverse viewer.

Calls API requests to find peers and builds an SQLite database.

https://github.com/H4kor/fediverse-explorer

Driven by:

async with session.get("https://" + instance + "/api/v1/instance/peers") as r:

https://github.com/H4kor/fediverse-explorer/blob/main/pipeline/instances.py

Found myself!

https://h4kor.github.io/fediverse-explorer/

Gives you a sense of peering in the network as size and scale.

#python #dataviz #graph

Finding an instance in the fediverse.

A very biased #graph of all #Android #Mastodon clients I could think of: #SubwayTooter, #MastodonApp, #Tusky and #FediLab.

Don't ask for my methods. I don't really have any. It's all vibes.

SubwayTooter 
Functionality 10/10
Interface 1/10
Ease of use 2/10

Mastodon 
Functionality 3/10
Interface 4/10
Ease of use 6/10

Tusky 
Functionality 5/10
Interface 10/10
Ease of use 7/10

Fedilab 
Functionality 8/10
Interface 5/10
Ease of use 5/10
m naudin
4 months ago

J'adore cette translation en graphe du Rubik's Cube :shibahearteyes:! Elle peut aider à comprendre son fonctionnement.
#RubiksCube #graph

Davy :ferris:
5 months ago

Name a project you've spent a bunch of hours to craft and then realized that it was presumably way too niche.

Let me start: hypergraph.

I once stumbled upon https://www.wolframphysics.org, bought the book and felt in love with hypergraphs.

Ended bringing https://github.com/yamafaktory/hypergraph to life.

At least it was fun!

#oss #math #graph #data

Leon Lotter
5 months ago

Twitter might be going down. @beatty is trying to preserve the Science Twitter Graph.

Go to https://opencheck.is/scitwitter, provide your Twitter handle and your @ORCID_Org ID - that's it!

Just for fun, I visualized the network: http://leonlotter.de/twittergraph/graph.html
When I ran the code a few minutes ago, we had already around 600 nodes and 5000 edges in the network!

#Science # Twitter #TwitterMigration #network #graph #networkscience #scicomm #datavis
@cognition @neuro @phdstudents

(1/2)

The Twitter Network. It looks very dense. One cannot see individual ORCID IDs because there are around 600 nodes and 5000 edges.
Pierre Lindenbaum
5 months ago

I played with the mastodon #API . Here is my current genomic.social #network #graph visualized with #gephi ( https://gephi.org/ ). The usual suspects are all linked together.

my social network graph in genomic.social visualized with gephi.
Zachary Neal
5 months ago

The #Rstats {backbone} 📦 v2.1.1 is now available on #CRAN.

New to backbone? Here's a short 🧵 on what it does.

Backbone transforms a dense/weighted #network or #graph into a sparse/unweighted one. This #OpenAccess paper provides a detailed #tutorial, demonstrating the package's main functions with reproducible examples using both small toy data and real-world empirical #data from #transportation, #politics, and #sociology. 👇 (1/7)

https://doi.org/10.1371/journal.pone.0269137

Three empirical networks, before and after backbone extraction: a weighted air traffic in the united states, a bipartite projection of bill co-sponsorship in the US congress, and an unweighted friendship network.

I've just released a new version of Hypergraph - a #rustlang data structure library to generate directed hypergraphs - with the introduction of parallelism thanks to Rayon 🚀.

https://github.com/yamafaktory/hypergraph

#data #science #graph #opensource #foss