Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
Accelerator
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
sorrly
/
Study
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
Study
/
dataMiningStudy
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
20 lines (12 loc) · 1.34 KB
master
Breadcrumbs
Study
/
dataMiningStudy
Copy path
Top
File metadata and controls
Code
Blame
20 lines (12 loc) · 1.34 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 데이터 마이닝 실무적 처리 순서
내 경우는 주로 모바일 센싱 데이터를 처리하였음
0. 데이터 연구목적 : 어떤 데이터를 수집하여, 어떤 연구를 하고자 하는지 설정
1. 데이터 서버 : 수집하는 데이터들이 담기는 서버를 준비함, 주로 웹서버(APM)를 이용하였음
2. 데이터 로거 : 주로 모바일 센싱데이터를 수집하기 위한 앱을 제작함, 주로 자바를 이용하였고, 데이터는 db 파일로 저장함
3. 데이터 전처리1 : 로거(크롤러)에서 수집되어 서버에 저장된 Raw Data 를 시간순으로 Merging 함, 주로 파이썬을 이용함
4. 데이터 전처리2 : 전처리1 된 파일을 종류별(앱/노티/와이파이 등)로 Dividing 함, 주로 파이썬을 이용함
5. 데이터 가설토의 : 데이터에서 어떤 Feature 들을 뽑을지 토의함
6. 데이터 전처리3 : 전처리2 된 파일을 연구목적에 맞는 데이터들만 Extracting 하여 csv 파일로 저장함, 주로 파이썬을 이용함
7. 데이터 마이닝 : 전처리3 에서 만들어진 csv 파일로 여러가지 마이닝을 함, 주로 파이썬을 이용함
8. 데이터 비쥬얼화 : 파이썬/엑셀/파워포인트를 이용하여, 비쥬얼에 가장 쉬운 방법으로 각 경우에 따라 골라서 활용
// 5,6,7 이 주 반복 코스
You can’t perform that action at this time.