transactions | 0. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:48 |
---|
operations | 0. | 0. | comment |
---|
1. | parent_author | "" |
---|
parent_permlink | wordcloud |
---|
author | hironlee |
---|
permlink | r-wordcloud |
---|
title | "R을 이용하여 파일로부터 문서를 읽어 WordCloud 그려보기" |
---|
body | "지난(3.18) 포스팅(https://steemit.com/gartner/@hironlee/5-top-10-strategic-technology-trends-from-gartner-inc) 에 이어, R(RStudio)을 이용하여 최근 5년간의 전략기술 트렌드를 다룬 뉴스의 내용을 읽어 들여, 많이 언급된 단어의 빈도 순으로 크기를 조절하여 WordCloud를 만들어 보는 실습을 해보았습니다.
## 결과 WordCloud

## 사용한 R Package 목록
* KoNLP : 한글 자연어 처리 패키지 (Korean Natural Language Processing)
* wordcloud : 주어진 데이터를 WordCloud 형태로 그리는 패키지
* rvest : 웹페이지를 크롤링하는 패키징, 간단히 사용만 해봤으며, 디테일한 크롤링은 안해 봄
* RColorBrewer : R시각화 패키지
## 사용한 주요 함수
* readLines(szFileName)
• szContents <- readLines(szFileName)
• szFileName 경로의 파일을 한 라인단위로 읽어 들이기
* gsub("찾을단어","바꿀단어",szContents)
• szContents <- gsub("AI","인공지능",szContents) : “AI” 라는 단어를 “인공지능”으로 치환
• szContents <- gsub("'","",szContents) : “’” 특수문자를 공백으로 치환
• 등 문장 중 특정 단어를 치환, 필터링 하는 함수
* sapply(szContents, extractNoun, USE.NAMES=F)
• 각 라인에서 명사 단어만 가져오기
* display.brewer.all() : 제공 색상타입 모두 보기
* wordcloud(….) : WordCloud 그리는 함수
• scale : 빈도가 가장 큰 단어와 가장 빈도가 작은 단어 폰트 사이 크기, scale=c(5,0.2)
• rot.per=0.1 : 90도 회전해서 보여줄 단어 비율
• min.freq=3, max.words=100 : 빈도 3이상, 100미만 단어 표현
• random.order=F : True(랜덤배치) / False(빈도수가 큰단어를 중앙에 배치)
• random.color=T : True(색상랜덤) / False(빈도수순으로 색상표현)
• colors=brewer.pal(11, "Paired") : 11은 사용할 색상개수, 두번째는 색상타입이름, 색상타입은 display.brewer.all() 참고
• family : 폰트
* savePlot(szWordCloudImageFile, type="png") : WordCloud 결과를 이미지 파일로 저장
## R 소스코드
\# 필요 Package 설치
install.packages("rvest") #웹페이지 크롤링을 위한 패키징
library("rvest")
szPostUrl1 <- "http://www.itworld.co.kr/news/106768"
szPostData1 <- read_html(szPostUrl1)
\# 전체 페이지 크롤링은 쉬우나, 특정 영역 크롤링은 간단하지 않으므로 우선 Pass, 다음에 실습 예정
\# 필요 Package 설치
install.packages("KoNLP") #한글 자연어 처리 패키지 (Korean Natural Language Process)
install.packages("wordcloud") #wordcloud 패키지
install.packages("RColorBrewer")
\# Library 로드
library("KoNLP")
library("wordcloud")
library("RColorBrewer")
useSejongDic() #한글 세종사전
szFileName <- "D:\\Documents\\R\\RStudy\\data\\Gartner_2014_18_TechTrend.txt"
szWordSaveFileName <- "D:\\Documents\\R\\RStudy\\data\\Gartner_2014_18_TechTrend_Word.txt"
szWordCloudImageFile <- "D:\\Documents\\R\\RStudy\\data\\Gartner_2014_18_TechTrend_Word.png"
szContents <- readLines(szFileName) # 기사를 담은 파일에서 한 라인씩 읽어들이기
View(szContents) # 파일 내용 확인 (아래 그림1 참고)
\# 불필요한 문자 필터링, 치환
szContents <- gsub("'","",szContents)
szContents <- gsub("‘","",szContents)
szContents <- gsub("\"","",szContents)
szContents <- gsub("“","",szContents)
szContents <- gsub("”","",szContents)
szContents <- gsub("기술","",szContents)
szContents <- gsub("가트너는","",szContents)
szContents <- gsub("하게","",szContents)
szContents <- gsub("10","",szContents)
szContents <- gsub("들이","",szContents)
szContents <- gsub("하기","",szContents)
szContents <- gsub("부사장","",szContents)
szContents <- gsub("가지","",szContents)
szContents <- gsub("AI","인공지능",szContents)
szNounsContents <- sapply(szContents, extractNoun, USE.NAMES=F) #각 라인마다 명사단어들만 남기기
View(szNounsContents)
szNounsContentsList <- unlist(szNounsContents) #단어들만 가져오기
View(szNounsContentsList)
\# 2글자 이상의 단어만 필터링
szLastData <- Filter(function(x) {
nchar(x)>=2
},szNounsContentsList)
\## 최종 2글자 이상의 단어들의 목록
View(szLastData) ## 목록 확인 (아래 그림2 참고)
write(szLastData, szWordSaveFileName) # 결과 목록을 파일로 저장
szDataTable <- read.table(szWordSaveFileName)
View(szDataTable)
ListWordCount = table(szDataTable) # 테이블형태 변환해서 저장
View(ListWordCount) ## 테이블 형태로 저장 (아래 그림3 참고)
\#### Word Cloud 그리기..
windows()
display.brewer.all() # 제공 색상타입 모두 보기 (아래 그림4 참고)
windowsFonts(font=windowsFont("맑은 고딕"))
\### Word Cloud 함수 호출
wordcloud(
names(ListWordCount),
freq=ListWordCount,
scale=c(5,0.2), #빈도가 가장 큰 단어와 가장 빈도가 작은단어 폰사 사이 크기
rot.per=0.1, #90도 회전해서 보여줄 단어 비율
min.freq=3, max.words=100, # 빈도 3이상, 100미만
random.order=F, # True : 랜덤배치, False : 빈도수가 큰단어를 중앙에 배치
random.color=T, # True : 색랜덤, False : 빈도순
colors=brewer.pal(11, "Paired"), #11은 사용할 색상개수, 두번째는 색상타입이름
family="font")
\## 최종 이미지파일로 저장
savePlot(szWordCloudImageFile, type="png”)
#### 그림 1) : 문서 파일로부터 한 라인씩 읽어 들인 목록

#### 그림 2) : 문서에서 2글자 이상의 단어들로만 재구성한 목록

#### 그림 3) : 테이블 형태로 빈도 포함한 단어 목록

#### 그림 4) : display.brewer.all() 함수 호출을 통해 확인할 수 있는 색상타입 목록 전체

## Reference
* https://cran.r-project.org/web/packages/wordcloud/
* https://cran.r-project.org/web/packages/KoNLP/
* https://cran.r-project.org/web/packages/RColorBrewer/
**) 테스트에 사용된 기사모음 파일 : [Gartner_2014_18_TechTrend.txt 파일 다운로드](http://hochul.net/blog/wp-content/uploads/2018/03/Gartner_2014_18_TechTrend.txt)
****** 2018.3.25 이호철(hironlee@gmail.com)" |
---|
json_metadata | {"tags":["wordcloud","rscript","bigdata","datamining","it"],"image":["https://steemitimages.com/DQmaVkE9pkgzqZcbwdaszeMVNFgczW7XdbXaMP7gPFmV5um/1.png","https://steemitimages.com/DQmU6thvwPhSy93R5wFKLCbqCCVyAf1Ybs3LsKnCGkvC5GT/a00001.png","https://steemitimages.com/DQmVZ21smyaKqh2VRfkTUWv1J8AUvcjtdnv54zoYaB2yj8M/a00002.png","https://steemitimages.com/DQmPwj2hDBicb7TAPoLtepsH6wXapdCTQTuiDCozUFhe8H2/a00003.png","https://steemitimages.com/DQmbWKYkLRqjtwX8LMYHJjb94ebP9mAaayb6zUYVfyR4ENa/a00004.png"],"links":["https://steemit.com/gartner/@hironlee/5-top-10-strategic-technology-trends-from-gartner-inc","http://www.itworld.co.kr/news/106768","https://cran.r-project.org/web/packages/wordcloud/","https://cran.r-project.org/web/packages/KoNLP/","https://cran.r-project.org/web/packages/RColorBrewer/","http://hochul.net/blog/wp-content/uploads/2018/03/Gartner_2014_18_TechTrend.txt"],"app":"steemit/0.1","format":"markdown"} |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 207249941358295536dd1615e3c4903d9ff15e6cd40f7c58b6ab0817984cf6e6de0bca14f84dbb2b08dfde2f9c0a28a7b7624cf58c484d47f3d769bcae40435138 |
---|
|
---|
transaction_id | d0af94589b58970a6af645b9ff3c15897ad33961 |
---|
block_num | 21,000,953 |
---|
transaction_num | 0 |
---|
|
---|
1. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:45 |
---|
operations | 0. | 0. | comment |
---|
1. | parent_author | cryptocurator |
---|
parent_permlink | steem-ambassadors-the-geo-spread-cohort-1 |
---|
author | jassennessaj |
---|
permlink | re-cryptocurator-steem-ambassadors-the-geo-spread-cohort-1-20180326t024545311z |
---|
title | "" |
---|
body | "This is awesome. Thank you for @cryptocurator" |
---|
json_metadata | {"tags":["promo-steem"],"users":["cryptocurator"],"app":"steemit/0.1"} |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 206059ecde45be61514a9a35583c16666049502ce1bff1e9798905acc91a6ee0700c1b667165d4ab1dd80dd1b4f02f8f344c6844a7b2048a8d8bd0c11e20d83858 |
---|
|
---|
transaction_id | b3d372739a82c2ceca648a9bcf36543867c4a466 |
---|
block_num | 21,000,953 |
---|
transaction_num | 1 |
---|
|
---|
2. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:48 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | starthere |
---|
author | joninacalara |
---|
permlink | colorchallenge-mondayred |
---|
weight | 10,000 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f2e0dd283b032aad647891fac3a9f29c9c8d9d254febae6be8e020d83242cac334288e6b9c1d174ccf5a3987733579538090f953a1f56b2de6de8cf1aa858f05f |
---|
|
---|
transaction_id | 847f81ba59c745f17bafa7954b02bdb8cc1f7b95 |
---|
block_num | 21,000,953 |
---|
transaction_num | 2 |
---|
|
---|
3. | ref_block_num | 29,431 |
---|
ref_block_prefix | 871,555,694 |
---|
expiration | 2018-03-26 02:46:49 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | adee01 |
---|
author | abdullaharif |
---|
permlink | ranga-mechanic-2018-telugu-film-dubbed-into-hindi-full-movie-or-ram-charan-kajal-aggarwal |
---|
weight | 70 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f52b33b5555e9e8b6eb90bcb902eb4e2080351c277de1e983c3171d5cba7162342555af057d45abf8ec26e4ddc355ea4eb72cd31b0750a226c1dd39b442bd008f |
---|
|
---|
transaction_id | 4d9673a477c908fe628237793b0f1150f95c22b9 |
---|
block_num | 21,000,953 |
---|
transaction_num | 3 |
---|
|
---|
4. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:45 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | kait |
---|
author | elbreeder |
---|
permlink | sundays-are-always-good |
---|
weight | 10,000 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f6420ff5f456097b6619c68e38e726431f67782be9b20112e99ef8a54363dbd903f605d819f43d72f661255cf0e16101b998014dadd76b02b331a5da918f30697 |
---|
|
---|
transaction_id | e7e396bd9fecf2d4057e811365fbf8963ab8f3bb |
---|
block_num | 21,000,953 |
---|
transaction_num | 4 |
---|
|
---|
5. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:48 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["reblog",{"account":"dexterdumb","author":"bethalea","permlink":"shedding-the-tyranny-of-control"}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 20320907ad65bc37759f2cc7033cd555aac61e7f002702aae36a05afc9051ec03a39466b2e1bc82597f714d617394876d9b1b378bfa813317739c8b3fed97472b7 |
---|
|
---|
transaction_id | 9a4ac3a3f7f2a5d83b2e30284ac3a946cdac5904 |
---|
block_num | 21,000,953 |
---|
transaction_num | 5 |
---|
|
---|
6. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:48 |
---|
operations | 0. | 0. | comment |
---|
1. | parent_author | jsj1215 |
---|
parent_permlink | l9iac |
---|
author | jjy |
---|
permlink | re-jsj1215-l9iac-20180326t024549698z |
---|
title | "" |
---|
body | "국민학교 참 아득한 이름이지요.
그래도 아름답고 정겨운 추억이 깃든 곳
지금도 가고 싶은 곳" |
---|
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 2027f502784692e30a78142a13b23def42350b40aac5151f63acb5afff9a3210513b7df53339cfed00e31e9f8d71194721fe8c08916d950a1f602d91d4031afea8 |
---|
|
---|
transaction_id | bc3c712b5c1f24d3597005313f47cc570908e20a |
---|
block_num | 21,000,953 |
---|
transaction_num | 6 |
---|
|
---|
7. | ref_block_num | 29,430 |
---|
ref_block_prefix | 2,964,278,409 |
---|
expiration | 2018-03-26 02:46:17 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | scooter77 |
---|
author | benleemusic |
---|
permlink | 9ca54b70-309c-11e8-8c78-95b7c3b77998 |
---|
weight | 4,000 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 20411b06a838a398f153b77acc87b6cf96b420ec76016d2255c73cedc67ffeb4b6300985cba09567449e420006b735a20280e5b4f0ab5182e3d9dc48d284c893d2 |
---|
|
---|
transaction_id | 1252bb50b72ca4d543f68f3c67a4aefa21f5b828 |
---|
block_num | 21,000,953 |
---|
transaction_num | 7 |
---|
|
---|
8. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:48 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"bxt","following":"myupbit","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 2022729e6c8ba8ced9948fff5adc2a0a164416cd2fb05b8798dcc3a384d2c6a8ee5a59cc98f167266360ff88f3bf25bab955bc58a75db064e707836bc82ffce8b3 |
---|
|
---|
transaction_id | f5be65ad9ffe58beab057439f2828ce492df7ef9 |
---|
block_num | 21,000,953 |
---|
transaction_num | 8 |
---|
|
---|
9. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:45 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | zayar1988 |
---|
author | linmyatkoko |
---|
permlink | maakt |
---|
weight | 10,000 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 2027e96ad2dc09696023eafee8cacec7053e81c10db6a91e1c96b5cae8bcd1f2524c64cde93e9c9757e649ff24a11ac96245a6e29082a39f9664cb060be802e650 |
---|
|
---|
transaction_id | df72c652e7ea4bae9bc952a34dca8f0035fbb2e2 |
---|
block_num | 21,000,953 |
---|
transaction_num | 9 |
---|
|
---|
10. | ref_block_num | 29,409 |
---|
ref_block_prefix | 1,279,816,010 |
---|
expiration | 2018-03-26 02:55:39 |
---|
operations | 0. | 0. | comment |
---|
1. | parent_author | sifatsarker |
---|
parent_permlink | planetary-gear-box-overhauling |
---|
author | faiyazmahmud |
---|
permlink | re-sifatsarker-planetary-gear-box-overhauling-20180326t024538600z |
---|
title | "" |
---|
body | "Thank you for this helpful post." |
---|
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f0d02260418cd87556c23ab4ea71dd20c57d32ed30d725e586757a7b9d74205887518c80e63d53fc9df2f6f5de740d857e3b81a5420f10fb906a5640eb388cdec |
---|
|
---|
transaction_id | 2c7e56cda6c75215f42081f924345fc1e4448749 |
---|
block_num | 21,000,953 |
---|
transaction_num | 10 |
---|
|
---|
11. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:48 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"priok","following":"englishtchrivy","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f36c2683420fa4770689d13728a107361e0deabcf6f2bf625f829cf6d0f23bdd51888d02797ae54b2dd3e474385c8ae9ac546a4da420c139c0149104501eb4466 |
---|
|
---|
transaction_id | 3300c7c478c7185ed58a7ddfe9222bc3ebbf5d16 |
---|
block_num | 21,000,953 |
---|
transaction_num | 11 |
---|
|
---|
12. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:51 |
---|
operations | 0. | 0. | comment |
---|
1. | parent_author | gregbit |
---|
parent_permlink | dominican-republic-and-various-beers |
---|
author | jtoda0 |
---|
permlink | re-gregbit-dominican-republic-and-various-beers-20180326t024552048z |
---|
title | "" |
---|
body | "I would start a youtube channel reviewing beers and set up shop right there lol" |
---|
json_metadata | {"tags":["beer"],"app":"steemit/0.1"} |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f414b99585818e6dcb251a5ff63483fd6e67ce21dc6833b2460465ad463ef3d43432461669892d3342d3680706fa717c3d451eef26d7c0e2b065918ce298415ae |
---|
|
---|
transaction_id | de90e64c3defbb2f25a68d2797f5322779e05108 |
---|
block_num | 21,000,953 |
---|
transaction_num | 12 |
---|
|
---|
13. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:48 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | bokya |
---|
author | rinkuzblog |
---|
permlink | 2qgcxa-animal-tissue |
---|
weight | 10,000 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 206bd343edf3639f8c62eb6a23ce285172c5a61c280489b1f5c6ef30a3b66b3e9a46f170baa080305bc92d196352ed866fd20ea967ba574bdf395e37e3ea8878ce |
---|
|
---|
transaction_id | 99f3abf70d411475692d97c8a7fa72c33db76c6c |
---|
block_num | 21,000,953 |
---|
transaction_num | 13 |
---|
|
---|
14. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:51 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | anthonyperez21 |
---|
author | gordofunky |
---|
permlink | steempys-venezuela-es-seguro |
---|
weight | 5,000 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 205631992fce3fad254107f133a48fb46bd324bf2f9232fc41b2b980bfa0e91ed20237eac119502d1f970a41b36545fcaf3b442cb8eb443ff08357b04633696259 |
---|
|
---|
transaction_id | 66af20fc18a418016d93d4e61eb02f16b3bc7a65 |
---|
block_num | 21,000,953 |
---|
transaction_num | 14 |
---|
|
---|
15. | ref_block_num | 29,428 |
---|
ref_block_prefix | 1,850,199,690 |
---|
expiration | 2018-03-26 02:46:49 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | "["follow", {"follower": "digital.mine", "following": "aarondzholla\n", "what": ["blog"]}]" |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f7201f4662a26b8ba8d56737eea0128eea9afc23892fc9a7b2a206ba425e1088c21e8b4aab4355cf7089c732bb91a69f9a67ab5bd48e3399416ca917848aa2a9c |
---|
|
---|
transaction_id | 6ad89a6f3293f9d505d1d2dadefe89052644288b |
---|
block_num | 21,000,953 |
---|
transaction_num | 15 |
---|
|
---|
16. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:51 |
---|
operations | 0. | 0. | comment |
---|
1. | parent_author | munhwan |
---|
parent_permlink | re-juheepark-64-kr-20180325t100651661z |
---|
author | juheepark |
---|
permlink | re-munhwan-re-juheepark-64-kr-20180326t024551872z |
---|
title | "" |
---|
body | "타이밍 괜찮은거지요-? 헤헤 그럼 한번 더...?" |
---|
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 20066bb8b4debd84b6e1d977531f4eb6a174bd2cabe148bf44c196b8649ec8535d10cdb24b1e848736a0bcaf022b9071f118c49fa173924dd5fae369c4f0772685 |
---|
|
---|
transaction_id | fd6dca7769b795caf2e67a8e3e986074f7c5e6ba |
---|
block_num | 21,000,953 |
---|
transaction_num | 16 |
---|
|
---|
17. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:48 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"louishugo","following":"happy-steemit","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 201c19db707207d3af7fc9b26299e95fb3265a34c3c3534ca1ed8508000c6c2edd5bd8d9794807105dfb9c887badea8a4572db8e6828bcf8dce36d44d8e0f84127 |
---|
|
---|
transaction_id | 50541794674f70a27d2538613db8ad069e61b2a8 |
---|
block_num | 21,000,953 |
---|
transaction_num | 17 |
---|
|
---|
18. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:51 |
---|
operations | 0. | 0. | transfer |
---|
1. | from | crisangel |
---|
to | mariebotha0 |
---|
amount | 0.001 HBD |
---|
memo | #3shwBZCN78Pk1iE5i6uS7WYCkXX6DaojzZ9HdyxwffAseCM7VSJvCHxhs79XVr98Rawoz4jD9yo3PhXmDNGcRRnpaZJCaPpxfgoUG21RzENJTH2ATiifzxSHRCyfLejBUe6PH8peoMYhfZfpE89z6XTFwmMdahKas34ts27W6KvAwXD4dhakvpGJ97dJaELrkgduEhNZPFTsaqg2VAQLe8ACLS7soCURyA7E2aiWtfZBQE7Q1oob9cAiPHiepAMnNfjXyu3HWLGYChc3Utth9Rrhh2ThSUPcE44aoqxmxRt49bePQr2oCMB3qDwJJhDVm74vfNrUu8CSgL5ijJmByK1EQ2Ywha5p2uxKZYkRb884zgyZqoGMC3zcP8vy87iqwFeEhuvoV9pAkcXTc2XBQYbP7f4qMzDfShNHtYmDybzKk2CYQsJWLdxCbKikA8upJ2jUN8T4bvMGs9ZVQRbZ61fqiouTbofvbtrWLxx5ccb7rC6JPUvCFqeo78Zz4AieQDeBsWzKHtX7uc3SxuVUT3n4t6smCA9SXJjqJafGfmeYsmK9W9mzLcvLuVeD4k1t49a9sq7cQuWVMWunR7t53dykbGbo7dEZSRPRqapbr6P11D13MDnpor1u9ofVnPKzmxZpMYvQFR1AfTKQPjWB6VPGaYQzev1TezNPfzb9rbqfZaTLDRFJTGWQUt2eXKLkX9BS19T9kgNnhN6XYodDxwpE84M1BCvRD1j8y21HMTYx3iMi2vwSC4pyKZoAfBvBfLe1pDZ3CMgigQiiPpuzndmCQhh2RcJkZm9RcQ8BfngmThL6keFs4VqTfcxo24fR2WHedUjs3Tbc1XTz3fQambm4tdVjV9xomy38TpTcSUYEcVVvQ7qBoyRxvAqgQZcktBAdo43KbksagX1jpa5LEHcVpM1zYAS6i3TTBfwVg6KgWg3bVLuAzX8VRVot95Rcg |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f1be830d45fb90a4c05bc15ef45822f1fc98aa3398ef4e56a06959430bf51fdc771143df9e5d565909cdd73eaf5d2eddf29d039c5f766454279ad51d39d7715da |
---|
|
---|
transaction_id | 9ba5ff95fe421a9653ec8998ecd03f3bfa0cdf9b |
---|
block_num | 21,000,953 |
---|
transaction_num | 18 |
---|
|
---|
19. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:51 |
---|
operations | 0. | 0. | set_withdraw_vesting_route |
---|
1. | from_account | lukianikonova |
---|
to_account | tard |
---|
percent | 10,000 |
---|
auto_vest | false |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f660909799dfd43f4be4b8fd0dfc7238fbb0263e0e5bcbd80ec28b87e0fd4499c12ce6ea759009055dbcc0b6a74d9651c68dfd7db0f3241c6bf456ecd48076441 |
---|
|
---|
transaction_id | f2b918a2e08f4108fbfcb1ce09c1d752f462264a |
---|
block_num | 21,000,953 |
---|
transaction_num | 19 |
---|
|
---|
20. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:48 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"priok","following":"elyaque","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f50367ca6172421f8645fc223927260e0cea1fd7ae2011ce695c52b30c7b6ce246c3e86aca4e7d0dc1496ca5cd29d7b88bddf6b37e140fe44087edcbaa3244f60 |
---|
|
---|
transaction_id | f357c9a1a7ddfedc39f413f9dce442d7e843e350 |
---|
block_num | 21,000,953 |
---|
transaction_num | 20 |
---|
|
---|
21. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:51 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | hawoon |
---|
author | support4you |
---|
permlink | 201,803,260,903 |
---|
weight | 10,000 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f750f2a09479337ef996c93d975970062ae3e3633c402491ecfdb441b3920adc86c4d841211534320dcb0853c709c7febf831abd391cde26a9ecae9163b7f107c |
---|
|
---|
transaction_id | 884ce6701ad9396be24fb92a196ab4a933d8a7fb |
---|
block_num | 21,000,953 |
---|
transaction_num | 21 |
---|
|
---|
22. | ref_block_num | 29,431 |
---|
ref_block_prefix | 871,555,694 |
---|
expiration | 2018-03-26 02:46:19 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | cryptogranny |
---|
author | samstonehill |
---|
permlink | what-is-the-most-pleasing-thought-you-can-think-of |
---|
weight | 10,000 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f286d85727b51525772667bccc92572a5e70ef3d3df681a64ea015f6a64abc7a754c43c39f3fa0081466153178bb947605bb0cf1791322aecd6c87334717c77b8 |
---|
|
---|
transaction_id | b5f720ddd5cdaeaa731057e6df7a5321b92ca5b9 |
---|
block_num | 21,000,953 |
---|
transaction_num | 22 |
---|
|
---|
23. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:48 |
---|
operations | 0. | 0. | comment |
---|
1. | parent_author | beajinsu |
---|
parent_permlink | re-nps0132-re-1522032133-20180326t024435676z |
---|
author | nps0132 |
---|
permlink | re-beajinsu-re-nps0132-re-1522032133-20180326t024552494z |
---|
title | "" |
---|
body | "ㄷㄷㄷㄷㄷ ;;;;" |
---|
json_metadata | {"tags":["kr-gazua"],"app":"steemit/0.1"} |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 20036792bf963599998d30b9047b605aa82c4b437e001c32cb1cdfa2faf5c11a59757f8719106e0acf9f7ef661e85dabbeccbbb5f858de50e891177ddee04e5344 |
---|
|
---|
transaction_id | c17effc19c61eafe0f05cb685cb14077ec36e6c0 |
---|
block_num | 21,000,953 |
---|
transaction_num | 23 |
---|
|
---|
24. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:51 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | louishugo |
---|
author | happy-steemit |
---|
permlink | black-and-white-photo-day11 |
---|
weight | 10,000 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f0580f7761b30cbbfcb9681f3c778428d5362f984f48b50ea60178e2c8ac5a2b2762dd6a653f7c036a220167fb6fae447e7cc4c303621d4a26fa77f91d5413c26 |
---|
|
---|
transaction_id | 1e081d4eb5331b64d90905454542dfc68cff50d5 |
---|
block_num | 21,000,953 |
---|
transaction_num | 24 |
---|
|
---|
25. | ref_block_num | 29,432 |
---|
ref_block_prefix | 2,444,634,357 |
---|
expiration | 2018-03-26 02:46:51 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | rhea11 |
---|
author | yoscomat |
---|
permlink | cocinando-con-el-corazon |
---|
weight | 70 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f3cf4def4803b7f5b25e7da9f238b39c43580b08def53acbaf5e40dbae597da876fa20f136315e70264ec3dc472bbc42c2badfdc8e518779e508b9794b7ec2820 |
---|
|
---|
transaction_id | ecc66d2a15b365bfad7443a96bc8f97d952d384e |
---|
block_num | 21,000,953 |
---|
transaction_num | 25 |
---|
|
---|
26. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:51 |
---|
operations | 0. | 0. | vote |
---|
1. | voter | orianandreina18 |
---|
author | aumonde |
---|
permlink | el-amarillo |
---|
weight | 1,500 |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f5c4e556f203f7a9efd2267371802d6e7aec11566f02ecc1ec54aa5886a50e03b568d36689d7a6abc579828577de0d5969e41ffc855b64005f2ced805842363f8 |
---|
|
---|
transaction_id | 2c5fc330eea3c0555e576e5d3fda4518a1250142 |
---|
block_num | 21,000,953 |
---|
transaction_num | 26 |
---|
|
---|
27. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:51 |
---|
operations | 0. | 0. | transfer_to_vesting |
---|
1. | from | tard |
---|
to | olgaarkin |
---|
amount | 0.518 HIVE |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 203d9a77c210b7de7a4136d3ee2d63f06468f9ce7c888a01e4ade8a4a28580f5fa4a1b03876e8cade9ed555d83bc6a123863538c1b698e904f21b37f94a900d0cc |
---|
|
---|
transaction_id | d7dbdd79116fc870049006d5194c4dc4ace7a608 |
---|
block_num | 21,000,953 |
---|
transaction_num | 27 |
---|
|
---|
28. | ref_block_num | 29,409 |
---|
ref_block_prefix | 1,279,816,010 |
---|
expiration | 2018-03-26 02:55:30 |
---|
operations | 0. | 0. | comment |
---|
1. | parent_author | silvia |
---|
parent_permlink | how-to-make-delicious-nugget |
---|
author | akutakutallah |
---|
permlink | re-silvia-2018326t9452024z |
---|
title | "" |
---|
body | "Nice post @silvia" |
---|
json_metadata | {"tags":["food","aceh","indonesia","nsc","busy"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} |
---|
|
---|
|
---|
1. | 0. | comment_options |
---|
1. | author | akutakutallah |
---|
permlink | re-silvia-2018326t9452024z |
---|
max_accepted_payout | 1,000,000.000 HBD |
---|
percent_hbd | 10,000 |
---|
allow_votes | true |
---|
allow_curation_rewards | true |
---|
extensions | 0. | 0. | 0 |
---|
1. | beneficiaries | 0. | account | esteemapp |
---|
weight | 1,000 |
---|
|
---|
|
---|
|
---|
|
---|
|
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 1f594824f10e82895abed961e2ab935ffb757643e6b7e1bb831a4ffbd62ada9d9660031b87d187d24d97eb9b4d0a13aa362ffa23461d9b77736e17a2d631c99f87 |
---|
|
---|
transaction_id | 955731a344afed090cf2b3a57cf3d1c34fdab35e |
---|
block_num | 21,000,953 |
---|
transaction_num | 28 |
---|
|
---|
29. | ref_block_num | 29,411 |
---|
ref_block_prefix | 2,647,267,800 |
---|
expiration | 2018-03-26 02:55:51 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | ["follow",{"follower":"bdkhan","following":"abrahammtx","what":["blog"]}] |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 201e24ec4564488b5c3b7f881af21f98afb74cbf6f2f0ccbf888c35270e5cd35454d184bbe48a062c87408e4845d69dc78297bb2a5380b77b06fc5953568c5f140 |
---|
|
---|
transaction_id | 829db4fadede6c21c11c16a024eabd6b6ce67199 |
---|
block_num | 21,000,953 |
---|
transaction_num | 29 |
---|
|
---|
30. | ref_block_num | 29,429 |
---|
ref_block_prefix | 3,114,968,638 |
---|
expiration | 2018-03-26 02:46:49 |
---|
operations | 0. | 0. | custom_json |
---|
1. | required_auths | [] |
---|
required_posting_auths | |
---|
id | follow |
---|
json | "["follow", {"follower": "you-decide", "following": "steemriza", "what": ["blog"]}]" |
---|
|
---|
|
---|
|
---|
extensions | [] |
---|
signatures | 0. | 2046895fe42f2a7caa89dce5035f5b4d4fa74115b9855ae70d93424a8478a5b8091d5f80a0f448ffc546cc33efedb4d5aa2a4c1578130b283d6505395a25c3219a |
---|
|
---|
transaction_id | 4c8681d01be98b03b902fb62b2ccb1104d76c9b8 |
---|
block_num | 21,000,953 |
---|
transaction_num | 30 |
---|
|
---|
|
---|