Bingsu commited on
Commit
7f41bad
·
1 Parent(s): b943038

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +126 -1
README.md CHANGED
@@ -1,3 +1,128 @@
1
  ---
2
- license: other
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - ko
4
+ license:
5
+ - other
6
+ multilinguality:
7
+ - monolingual
8
+ pretty_name: national_library_of_korea_book_info
9
+ size_categories:
10
+ - 1M<n<10M
11
  ---
12
+ # national_library_of_korea_book_info
13
+
14
+ ## Dataset Description
15
+ - **Aihub** [문화 빅데이터 플랫폼](https://www.culture.go.kr/bigdata/user/data_market/detail.do?id=63513d7b-9b87-4ec1-a398-0a18ecc45411)
16
+ - **Download Size** 759 MB
17
+ - **Generated Size** 2.33 GB
18
+ - **Total Size** 3.09 GB
19
+
20
+ - 도서별 상세정보
21
+ - 서명, 저자, 출판사, 책소개 등 각 도서에 대한 자세한 정보를 알려드립니다.
22
+
23
+ ### Lisence
24
+
25
+ other ([KOGL](https://www.kogl.or.kr/info/license.do#05-tab) (Korea Open Government Lisence) Type-1)
26
+
27
+ ![KOGL_image](https://www.kogl.or.kr/images/front/sub/img_opencode1_m_en.jpg)
28
+
29
+ - According to above KOGL, user can use public works freely and without fee regardless of its commercial use, and can change or modify to create secondary works when user complies with the terms provided as follows:
30
+
31
+ <details>
32
+ <summary>KOGL Type 1</summary>
33
+
34
+ 1. Source Indication Liability
35
+
36
+ - Users who use public works shall indicate source or copyright as follows:
37
+ - EX : “000(public institution's name)'s public work is used according to KOGL”
38
+ - The link shall be provided when online hyperlink for the source website is available.
39
+ - Marking shall not be used to misguide the third party that the user is sponsored by public institution or user has a special relationship with public institutions.
40
+
41
+ 2. Use Prohibited Information
42
+
43
+ - Personal information that is protected by Personal Information Protection Act, Promotion for Information Network Use and Information Protection Act, etc.
44
+ - Credit information protected by the Use and Protection of Credit Information Act, etc.
45
+ - Military secrets protected by Military Secret Protection Act, etc.
46
+ - Information that is the object of other rights such as trademark right, design right, design right or patent right, etc., or that is owned by third party's copyright.
47
+ - Other information that is use prohibited information according to other laws.
48
+
49
+ 3. Public Institution's Liability Exemption
50
+
51
+ - Public institution does not guarantee the accuracy or continued service of public works.
52
+ - Public institution and its employees do not have any liability for any kind of damage or disadvantage that may arise by using public works.
53
+
54
+ 4. Effect of Use Term Violation
55
+
56
+ - The use permission is automatically terminated when user violates any of the KOGL's Use Terms, and the user shall immediately stop using public works.
57
+
58
+ </details>
59
+
60
+ ## Data Structure
61
+
62
+ ### Data Instance
63
+
64
+ ```python
65
+ >>> from datasets import load_dataset
66
+ >>>
67
+ >>> ds = load_dataset("Bingsu/national_library_of_korea_book_info", split="train")
68
+ >>> ds
69
+ Dataset({
70
+ features: ['isbn13', 'vol', 'title', 'author', 'publisher', 'price', 'img_url', 'description'],
71
+ num_rows: 7919278
72
+ })
73
+ ```
74
+
75
+ ```python
76
+ >>> ds.features
77
+ {'isbn13': Value(dtype='string', id=None),
78
+ 'vol': Value(dtype='string', id=None),
79
+ 'title': Value(dtype='string', id=None),
80
+ 'author': Value(dtype='string', id=None),
81
+ 'publisher': Value(dtype='string', id=None),
82
+ 'price': Value(dtype='string', id=None),
83
+ 'img_url': Value(dtype='string', id=None),
84
+ 'description': Value(dtype='string', id=None)}
85
+ ```
86
+
87
+ or
88
+
89
+ ```python
90
+ >>> import pandas as pd
91
+ >>>
92
+ >>> url = "https://huggingface.co/datasets/Bingsu/national_library_of_korea_book_info/resolve/main/national_library_of_korea_book_info.csv.gz"
93
+ >>> df = pd.read_csv(url, low_memory=False)
94
+ ```
95
+
96
+ ```python
97
+ >>> df.info()
98
+ <class 'pandas.core.frame.DataFrame'>
99
+ RangeIndex: 7919278 entries, 0 to 7919277
100
+ Data columns (total 8 columns):
101
+ # Column Dtype
102
+ --- ------ -----
103
+ 0 isbn13 object
104
+ 1 vol object
105
+ 2 title object
106
+ 3 author object
107
+ 4 publisher object
108
+ 5 price object
109
+ 6 img_url object
110
+ 7 description object
111
+ dtypes: object(8)
112
+ memory usage: 483.4+ MB
113
+ ```
114
+
115
+ ### Null data
116
+
117
+ ```python
118
+ >>> df.isnull().sum()
119
+ isbn13 3277
120
+ vol 5933882
121
+ title 19662
122
+ author 122998
123
+ publisher 1007553
124
+ price 3096535
125
+ img_url 3182882
126
+ description 4496194
127
+ dtype: int64
128
+ ```