Skip to content

Commit

Permalink
주석 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
JongJong00 committed Jan 20, 2023
1 parent 36ee9ee commit 7d063f7
Showing 1 changed file with 34 additions and 35 deletions.
69 changes: 34 additions & 35 deletions src/Components/Detail.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,25 @@ import styled from 'styled-components';

const Detail = () => {
const colors = [
'year 과목년도',
'semester 학기',
'grade 수강 학년',
'major 학과(학부) ',
'credit 학점',
'lecture_credit 이론 인정 학점',
'prac_credit 실습 인정 학점',
'school_time 학교 시간표 기준 수업시간',
'real_time 실제 수업 시간',
'building 강의 건물',
'room 강의실',
'total 총원',
'sugang 수강 신청 한 인원',
'sugangpack 수강 꾸러미 담은 인원',
'review_id 강의평가 아이디(pk)',
'lecture_id 과목코드 ex) 20221DOAS0305002',
'sugang_number 수강인원',
'univ_mean 학과 평균(학과마다 다름)',
'favor 표준편차로 계산한 강의 평점 %(정규화)'
'과목년도', //year
'학기', //semester
'수강 학년', // grade
'학과(학부) ', //major
'학점', //credit
'이론 인정 학점', // lecture_credit
'실습 인정 학점',// prac_credit
'학교 시간표 기준 수업시간', // school_time
'실제 수업 시간', // real_time
'강의 건물', // building
'강의실', // room
'총원', // total
'수강 신청 한 인원', // sugang
'수강 꾸러미 담은 인원', // sugangpack
'강의평가 아이디', // review_id(pk)
'과목코드 ', // lecture_id ex) 20221DOAS0305002
'수강인원', // sugang_number
'학과 평균', // univ_mean(학과마다 다름)
'표준편차로 계산한 강의 평점' // favor %(정규화)

];

Expand All @@ -50,7 +50,7 @@ const Detail = () => {
<Row gutter={16}>
<Col span={8}>
<Card
title="Sugangpack/sugang"
title="수강꾸러미 신청인원 / 수강신청인원" //Sugangpack/sugang
bordered={false}
>
150%
Expand All @@ -59,15 +59,16 @@ const Detail = () => {

<Col span={8}>
<Card
title="Sugangpack/total"
title="수강꾸러미 신청인원 / 정원" //Sugangpack/total
bordered={false}
>
190%
</Card>
</Col>

<Col span={8}>
<Card title="1-favor" bordered={false}>
<Card title="상위 퍼센트" // 1-favor
bordered={false}>
30%
</Card>
</Col>
Expand All @@ -80,17 +81,12 @@ const Detail = () => {
<CarryOutOutlined /> 기본정보
</Divider>
<HashTag>
<Tag color="magenta">교수님</Tag>
<Tag color="magenta">교수</Tag>
<Tag color="red">학부(대학)</Tag>
<Tag color="volcano">type</Tag>
<Tag color="orange">information</Tag>
{/* <Tag color="gold">gold</Tag>
<Tag color="lime">lime</Tag>
<Tag color="green">green</Tag>
<Tag color="cyan">cyan</Tag>
<Tag color="blue">blue</Tag>
<Tag color="geekblue">geekblue</Tag>
<Tag color="purple">purple</Tag> */}
<Tag color="volcano">전공/교양/융합</Tag>
<Tag color="orange">수업방식</Tag>
{/* (위에꺼부터)professor college type information */}

</HashTag>

<Divider orientation="left">
Expand Down Expand Up @@ -121,19 +117,22 @@ const Detail = () => {
<Row gutter={16}>

<Col span={8}>
<Card title="review_number(수강평가한 인원)" bordered={false}>
<Card title="강의평가인원" // review_number
bordered={false}>
36
</Card>
</Col>

<Col span={8}>
<Card title="review_mean(평가 평균)" bordered={false}>
<Card title="강의평가평균" // review_mean
bordered={false}>
4.71
</Card>
</Col>

<Col span={8}>
<Card title="standard_deviation(표준편차)" bordered={false}>
<Card title="표준편차" // standard_deviation
bordered={false}>
0.27
</Card>
</Col>
Expand Down

0 comments on commit 7d063f7

Please sign in to comment.