"매 secondary research = 매 existing 의 published / collected data 의 매 analysis". 매 primary research (raw 새 data 수집) 의 반대. 매 lit review, 매 meta-analysis, 매 industry report 분석, 매 dataset reuse 다 포함. 매 2026 년 LLM-assisted secondary research 가 매 dominant — 매 single researcher 의 매 weeks → 매 hours.
매 핵심
매 vs primary research
Primary: 매 직접 collect — survey, interview, experiment, observation. 매 control 큼, 매 cost 큼.
Secondary: 매 already-published 의 reuse — books, papers, gov stats, industry reports, internal docs. 매 cheap, 매 fast, 매 control 작음.
매 source taxonomy
Academic: peer-reviewed papers (PubMed, arXiv, Google Scholar, Semantic Scholar, OpenAlex).
Internal: company analytics, post-mortems, design docs.
Community: HN, Reddit, GitHub, blog posts (lower trust, higher recency).
매 응용
Lit review: 매 새 paper 의 매 background section.
Market analysis: 매 startup 의 매 TAM/SAM/SOM 추정.
Competitor research: 매 product strategy 의 매 input.
Meta-analysis: 매 multiple studies 의 매 effect size 통합.
Due diligence: 매 investment / 매 acquisition 의 매 background.
💻 패턴
Pattern 1: LLM-assisted lit review
importanthropic,asyncioclient=anthropic.AsyncAnthropic()asyncdefsummarize_paper(abstract:str,question:str):msg=awaitclient.messages.create(model="claude-opus-4-7",max_tokens=512,system="You are a careful research assistant. Cite verbatim.",messages=[{"role":"user","content":f"Question: {question}\n\nAbstract:\n{abstract}\n\nIs this relevant? If yes, extract key findings + methodology in 3 bullets.",}],)returnmsg.content[0].textasyncdeflit_review(question:str,abstracts:list[str]):results=awaitasyncio.gather(*[summarize_paper(a,question)forainabstracts])return[rforrinresultsif"not relevant"notinr.lower()]