상위 질문
타임라인
채팅
관점
DOT (그래프 서술 언어)
위키백과, 무료 백과사전
Remove ads
DOT는 그래프 서술 언어이다. DOT 그래프의 파일 확장자는 gv 또는 dot이다. 2007년 이전의 마이크로소프트 워드 버전에 사용된 dot 확장자와의 혼동을 피하기 위해 gv 확장자가 선호된다.[1]
문법
그래프 종류
무방향 그래프

// The graph name and the semicolons are optional
graph graphname {
a -- b -- c;
b -- d;
}
방향 그래프

digraph graphname {
a -> b -> c;
b -> d;
}
속성

graph graphname {
// This attribute applies to the graph itself
size="1,1";
// The label attribute can be used to change the label of a node
a [label="Foo"];
// Here, the node shape is changed.
b [shape=box];
// These edges both have different line properties
a -- b -- c [color=blue];
b -- d [style=dotted];
// [style=invis] hides a node.
}
주석 처리
// This is a single line comment.
/* This is a
multiple line
comment. */
# Lines like this are also ignored.
Remove ads
단순 예시
graph ethane {
C_0 -- H_0 [type=s];
C_0 -- H_1 [type=s];
C_0 -- H_2 [type=s];
C_0 -- C_1 [type=s];
C_1 -- H_3 [type=s];
C_1 -- H_4 [type=s];
C_1 -- H_5 [type=s];
}
각주
외부 링크
Wikiwand - on
Seamless Wikipedia browsing. On steroids.
Remove ads