https://public.tableau.com/profile/arehoow#!/
Soap - · Perceived Data · Material: Hot Press Soap · Dimension: H60 x W100 x D20 mm each · Packaging - Two sides, flippable · Perceived Data, Case Study and Secondary Data · Material: Water Proof Paper 120gsm · Dimension: H75 x W170 mm each
Data Visualization 2-4. Scatter Plot 1) Scatter Plot이란? Scatter Plot - 점을 사용하여 두 feature간의 관계를 알기 위해 사용하는 그래프 - 산점도 등의 이름으로 사용됨 - 직교...
A classification of all possible chart types classified following the input data format.
raw data만 처리하는게 아니라 원하는 정보를 추출할 수 있어야 함 => ex) Preprocessing Data의 전체적인 흐름을 알 필요가 있음 => 흐름을 잘 전달하기 위한 Bar plot, Line plot, Scatter plot 등... 1.1...
visualization (data viz/vis or info viz/vis) [2] is the practice of designing and creating easy-to-communicate and easy-to-understand graphic or visual representations of a large amount[3]...
1.Bar plot 직사각형 막대를 사용하여 데이의 값을 표현하는 차트 범주(category)에 따른 수치 값을 비교하기 적합 막대의 방향에 따른 분류 (.bar() , .barh()) 수직(vertical) : x축에...
Matplotlib python에서 사용하는 시각화 라이브러리이다. numpy와 scipy를 베이스로 한 라이브러리라서 다양한 라이브러리와 호환이 좋다. Plot 큰 틀의 Figure라는 그림판에 Ax라는 그래프를 그린다라고...
Bar plot 막대그래프를 만들 수 있다. bar() 함수를 통해 그릴 수 있다. 막대 그래프의 색깔도 color 인자에 지정해 줄 수 있다. 두개의 막대그래프를 위로 쌓아 올려서 만들 수 있다. Bottom 인자를 설정을...
countplot(x='race/ethnicity', data = student) order로 순서 지정 가능 sns.countplot(x='race/ethnicity', data = student, order=sorted... countplot(x='race/ethnicity',data=student, hue='gender', order=sorted(student...