Questions tagged [diagram]

A diagram is a two-dimensional geometric symbolic representation of information according to some visualization technique.

1874 questions
17
votes
2 answers

Create class diagram from already existent iphone code

does anybody know, how i could create automatically a UML class diagram from an already existent iphone project. Is it possible? Thanks in advance.
Simon D.
  • 525
  • 3
  • 6
  • 14
17
votes
4 answers

UML : Internal class in a class diagram

In a class diagram, is there a way of specifying that a class is an internal class of another class ? Or is it considered as a pure implementation choice ?
Barth
  • 15,135
  • 20
  • 70
  • 105
17
votes
8 answers

Online Flowchart Diagram Tool (run from private wiki)

Is there some flowchart diagram tool that would (or could be made to) integrate with a self-hosted wiki? Requirements: basic functionality (e.g., drawing some boxes and some arrows) would strongly prefer it to be visual (i.e., not written out in…
red.october
  • 563
  • 1
  • 5
  • 12
17
votes
18 answers

What do you use to make programming flowcharts, diagrams, etc?

I've always just used OpenOffice Draw and it just occurred to me that there has to be something better out there. So what do you use? Do you like it? Bonus points for free things and for web apps.
Mike Crittenden
  • 5,779
  • 6
  • 47
  • 74
17
votes
5 answers

Programming for Young tableaux

A strange question follows: I'm doing a problem solving competition @ my school, and they allow us to use a computer. Since I'm the only one in the competition who knows how to code, I use C and Pascal programs to solve problems faster. I've done…
user2179983
  • 201
  • 2
  • 5
17
votes
3 answers

How to create a stacked line plot

There are multiple solutions to create a stacked bar plot in R, but how to draw a stacked line plot?
BurninLeo
  • 4,240
  • 4
  • 39
  • 56
16
votes
1 answer

How to create a database diagrams in visual studio code?

I am trying Visual studio code to code the database but I cannot create the database diagram. Is there a way I can create it just like in SSMS. Thank you.
NVS
  • 161
  • 2
  • 2
  • 4
16
votes
13 answers

Application for sketching ideas on a computer

I've always wanted to sketch all ideas I come up with in the computer instead of on paper, but everyone knows that sketching with good 'ol fashioned pen and paper beats the crap out of trying to do it with a mouse (or even worse, a touch pad). So I…
thr
  • 19,160
  • 23
  • 93
  • 130
16
votes
7 answers

Sankey diagram in javascript

I want to draw a Sankey diagram using Javascript. Can anyone provide some direction regarding the algorithms or libraries that are available for this?
321zeno
  • 1,264
  • 1
  • 12
  • 24
16
votes
3 answers

Looking for a diagram to explain WSGI

To help further my understanding of WSGI I'm looking for a diagram which explains the flow of an application, from webserver (eg. apache) through a number of middlewares to "code" (as in, the print "hello world" bit). I've read various articles…
Phillip B Oldham
  • 18,807
  • 20
  • 94
  • 134
15
votes
2 answers

Fusing arrows sideways in mermaid diagrams

How can I add laterally fused arrows in a R sequential mermaid diagram? In the the example below: library(DiagrammeR) mermaid(" graph TB A[GE Solution]-->C{1:1} B[GA Solution]-->C{1:1} C{1:1}-->D[Stir 10 mins at 500 r/min] D[Stir 10…
Scientist
  • 1,061
  • 2
  • 13
  • 30
15
votes
2 answers

UML inheritance - why is the direction of arrow from the subclass to the parent-class?

In the image above class B inherits class A. If B inherits all A's methods, shouldn't the arrow be from A to B? In my opinion it would make more sense if the arrow was from A to B. Is there a reason that the direction of the arrow is this way and…
user194878
  • 183
  • 1
  • 7
15
votes
5 answers

What program can I use to generate diagrams of SQL view/table structure?

I've been tasked with redesigning part of a ms-sql database structure which currently involves a lot of views, some of which contain joins to other views. Anyway, I wonder if anyone here could recommend a utility to automatically generate diagrams…
Blorgbeard
  • 101,031
  • 48
  • 228
  • 272
14
votes
5 answers

Sankey diagrams in Python

Is there a Python library for generating Sankey diagrams? I've seen this list of Sankey diagram applications and libraries, but none of them is in Python.
nazca
  • 340
  • 1
  • 2
  • 10
14
votes
2 answers

Venn diagram layout with d3.js

Is there a sample on how to do Venn diagram using d3.js? I know about the two samples: that are provided on D3 website. However they force me to calculate by myself the x.y position of the circles. I am hoping to feed just the data (circle sizes…
Yaron Naveh
  • 23,560
  • 32
  • 103
  • 158