Bingsu commited on
Commit
afe313e
·
1 Parent(s): eba6798

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -1
README.md CHANGED
@@ -19,7 +19,7 @@ size_categories:
19
 
20
  국립중앙도서관에서 배포한, 국립중앙도서관에서 보관중인 도서 정보에 관한 데이터.
21
 
22
- ### Lisence
23
 
24
  other ([KOGL](https://www.kogl.or.kr/info/license.do#05-tab) (Korea Open Government Lisence) Type-1)
25
 
@@ -125,3 +125,15 @@ img_url 3182882
125
  description 4496194
126
  dtype: int64
127
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
  국립중앙도서관에서 배포한, 국립중앙도서관에서 보관중인 도서 정보에 관한 데이터.
21
 
22
+ ### License
23
 
24
  other ([KOGL](https://www.kogl.or.kr/info/license.do#05-tab) (Korea Open Government Lisence) Type-1)
25
 
 
125
  description 4496194
126
  dtype: int64
127
  ```
128
+
129
+ ### about description
130
+
131
+ ```python
132
+ >>> df[df["description"].str.contains("[해외주문원서]", regex=False) == True].head()["description"]
133
+ 10773 [해외주문원서] 고객님의 요청으로 수입 주문하는 도서이므로, 주문취소 및 반품이 불...
134
+ 95542 [해외주문원서] 고객님의 요청으로 수입 주문하는 도서이므로, 주문취소 및 반품이 불...
135
+ 95543 [해외주문원서] 고객님의 요청으로 수입 주문하는 도서이므로, 주문취소 및 반품이 불...
136
+ 96606 [해외주문원서] 고객님의 요청으로 수입 주문하는 도서이므로, 주문취소 및 반품이 불...
137
+ 96678 [해외주문원서] 고객님의 요청으로 수입 주문하는 도서이므로, 주문취소 및 반품이 불...
138
+ Name: description, dtype: object
139
+ ```