Examples |
Description Visualization
SELECT substr(mailing_list, 2+char_length(mailing_list) -locate('-', reverse(mailing_list) ) ) as 'type', count(mailing_list) |
|||
Description Visualization
For an interactive visual, click the image below and then click the "Recompute layout" button (connected dots).
Use the results from the following query to create a temp table. This query finds all projects with more than one developer and lists the developer pairings. SELECT DISTINCT a.proj_unixname, a.dev_loginname, b.dev_loginname Use the temp table for the following query that finds out which developers are on the most multi-developer projects. SELECT sender_count AS Sender Count, COUNT(mailing_list) AS Frequency Using the results from the previous query, you can find the connections for any developer to create the network diagram. SELECT developer1, developer2 |
|||
Description Visualization: The first number shown when hovering over a dot is the number of senders. The second number is the number of messages for each sender count. |
|||
Description Visualization: The first number shown when hovering over a dot is the number of senders. The second number is the number of mailing lists with that sender count.
Use the results from the following query to create a temp table. SELECT mailing_list AS List, COUNT(DISTINCT sender) AS Senders Use the temp table for the following query. SELECT sender_count AS Sender Count, COUNT(mailing_list) AS Frequency |
|||
Description Visualization
|
|||
Description Visualization:
|
|||
Description Visualization For an interactive visual, click the image below and then click the "Recompute layout" button (connected dots). |
|||
Description Visualization |
|||
Description Visualization:
|
|||
Description Visualization:
|
|||



