묻고 답해요
158만명의 커뮤니티!! 함께 토론해봐요.
인프런 TOP Writers
-
해결됨[퇴근후딴짓] 빅데이터 분석기사 실기 (작업형1,2,3)
1유형, 3유형 답안 제출
1유형이랑 3유형에서 소문제가 여러 개 있을 때 답을 하나씩 옮겨적는다고 하면 문제 1-1 답안 적고 1-2 답 확인하러 코드로 넘어가면 1-1 답안 유지되나요 아니면 사라지나요?
-
해결됨[퇴근후딴짓] 빅데이터 분석기사 실기 (작업형1,2,3)
회귀모델 평가지표
분류모델의 경우 평가값이 0.9언저리면 괜찮은것으로 알고 있는데회귀모델의 경우 평가지표 값이 r2같은것 제외하고는mae,rmse등은 낮은것이 좋은것으로 알고있습니다근데 평균의 10%이하 정도 보통 좋은것으로 알고있는데 어떤값이 좋은지 어떻게 비교할수 있나요??
-
미해결코드로 배우는 React 19 with 스프링부트 API서버
교재 576페이지 : S3의 버킷을 AWS에서 찾을 수가 없음
위 이미지는 교재 376페이지의 상단 부분입니다.testUpload()를 실행시켰더니 "Tests Passed:"라는 메시지와 함께 실행성공되었습니다.그런데, 위 이미지에 나와있는, "S3의 버킷"을 AWS 어디에서 찾을 수 있는 지 모르겠습니다.아래 이미지는 나의 AWS S3 버킷 부분입니다.
-
미해결
사후검정에 대해서는 출제될 가능성을 어떻게 보실지요?
분산분석을 공부하다보니 사후검정이라는 것도 있던데 혹시 r이랑 차이가 나서 안나올 가능성이 있을지..간혹 강의에서 R과 결과값이 다른건 출제되지 않을거라고 하셔서요
-
미해결Vue.js 중급 강좌 - 웹앱 제작으로 배워보는 Vue.js, ES6, Vuex
Chrome 개발자 모드 확장이 안됨
Vue 3 시작하기 강의에서 알려주신 legacy 버전 설치해도 개발자 모드에서 vue 탭이 안보이고 아래와 같은 에러가 발생합니다.
-
미해결
[해결] Kafka Connect 실행이 안됨
에러내용$ ./bin/connect-distributed ./etc/kafka/connect-distributed.properties Error: Could not find or load main class org.apache.kafka.connect.cli.ConnectDistributed Caused by: java.lang.ClassNotFoundException: org.apache.kafka.connect.cli.ConnectDistributed 해결./bin/windows/connect-distributed.bat 수정rem Log4j settings의 하위 내용 변경 (경로 변경)%BASE_DIR%/etc/kafka/connect-log4j.properties실행 명령어./bin/windows/connect-distributed.bat ./etc/kafka/connect-distributed.properties 원인window 에선 windows 폴더 내의 것들을 실행해야했는데 한참을 뻘짓함...
-
미해결[유니티 레벨 업!] 모듈식으로 개발하는 퀘스트&업적 시스템
Quest System의 확장성에 대한 질문
안녕하세요.Quest System을 보고 참고하면서 구현을 하다가 확장성과 유연성에 대한 궁금증이 생겨 의견을 물어보고 싶어서 질문드립니다. Quest의 경우 다양한 조건이 있을 수 있는데예를 들면, 제한 시간 안에 clear를 했는가, 특정 스킬을 사용하지 않았는가, 특정 아이템을 보유하고 있는 상태로 완료했는가 등등 이런 경우에 가능하면 관리하기 쉬우면서 의존성도 낮추는 방향으로 계속 고민해 보고 있는데 어떤 방식으로 구현하는 게 좋을까요??해봤을 때 Task 단위로 요구사항이 달라지니 Task에서 event를 연결하는게 직관적이긴한데 너무 하드코딩 방식인 것 같고(하드 코딩이 나쁘다는 것은 아니고 필요하면 해야 겠지만 좀 더 좋은 방법이 있을 것 같아서 일단은 스킵하고 찾아보고 있습니다), Event Hub 같은 기능을 만들어서 관리해보려고도 해봤는데 DynamicInvoke나 object를 쓰게 되서 프레임마다 update하는 경우도 생기는데 성능이 부담되는 것 같습니다..
-
미해결Spring Boot TDD - 입문부터 실전까지 정확하게
cqrs 명령 아키텍처 개선 질문
안녕하세요 선생님 제가 이해가 잘 안된걸 수 있어서 확인차 질문 드립니다!var executor = new RegisterProductCommandExecutor(productRepository::save); executor.execute(command, uuid, sellerId);명령 조회를 개선하면 RegisterProductCommandExecutor 라는 실행기를 만들어서 execute 로 실행하는 동작으로 이 구조를 pdf 자료에서 확인하면궁금한점이명령모델이 new RegisterProductCommandExecutor(productRepository::save); 로 실행기를 만들면 명령모델이 실행기를 만들면서 productRepository 라는 기반구조에 의존하고 있는거 아닌가요? 구조자체에서 보면 명령실행기는 execute 를 통해서 실행기가 참조하는 기반구조 기능을 실행하는 건 직접 의존하지 않아서 자유도가 높아보인다? 라는 생각이드는데요, 실행기를 만들때 명령모델은ProductRepository 를 알아야할 것같아서 의미가 없어보입니다.실행기를 만들때 실행기 자체가 bean으로 등록이 되고 실행기 bean 안에서 ProductRepository 를 스프링에서 주입받고, 실행기를 만드는 명령 모델은 실행기만 주입받고 파라미터로 repository 를 넘겨도 되지 않으니 이게 정말 의존하지않는 구조같은데요.(제가 말한 (2) 방식이라면) 이이렇게 되면 그냥 돌고돌아서 결국엔 처음 방식인 ProductRepository 인터페이스를 (추상화 되어있으니) 그냥 바로 빈을 주입받는 것이랑 별차이 없다고 생각합니다조회도 역시 이런생각이 들었습니다. 명령과 조회를 분리한다는 개념은 이해가 갈거같은데 각 명령과 조회 모델이 기반구조에 의존? 한다는 개념을 잘 이해가 가지 않습니다!
-
미해결이득우의 언리얼 프로그래밍 Part2 - 언리얼 게임 프레임웍의 이해
제가 만든 폴더와 c++파일이 콘텐츠 브라우저에도 표기되지 않고
ABGameMode도 선택했고 코드에서 플레이어 컨트롤러도 제대로 바꿨는데 다음과 같은 오류가 떴습니다Couldn't spawn player: Failed to spawn player controller그래서 계속 문제를 붙잡고 씨름하다가 엔진을 껐다가 켜니까 이젠 아예 게임 모드가 없어졌네요 일단 프로젝트를 새로 만들어서 다시 해볼생각이긴 한데 이게 왜 이런건지 모르겠네요
-
해결됨블렌더 지오메트리 노드 클래스 Part 1
도넛을 z축으로 위 아래 그라데이션 선택 하고 싶은데 방법이 있나요
저는 도넛의 노이즈 텍스쳐가 위는 과하게 들어가고, 아랫부분은 덜들어갔으면 합니다 그리고 그걸 컬러 램프를 통해 제어하고 싶은데 방법을 모르겠어서 도움 요청드립니다.
-
해결됨실전! Django 입문 [최신 5.2 버전]
가상환경 확인
가상환경을 맞추는 작업(확인)을 하지 않으면 어떤 문제가 생기는지요?
-
해결됨[퇴근후딴짓] 빅데이터 분석기사 실기 (작업형1,2,3)
기출3회 작업형2
혹시 수치형과 범주형데이터를 분리했다가 합치지 말고,바로 원핫인코딩을 진행해서 해도 괜찮을까요?또, max_depth도 꼭 필요한지, 어디서 적용해야하는지도 궁금합니다
-
미해결15일간의 빅데이터 파일럿 프로젝트
Hue구성오류 질문입니다.
안녕하세요.Hue 설치 중 에러가 발생하여 원인을 찾아보고 있는데, 잘 이해가 되지 않아 조언을 구하고자 합니다.말씀해주신 대로 Python 2.7 설치는 완료했으며, Cloudera 웹 UI에서 Serve02에 Hue를 설치하는 과정에서 오류가 발생했습니다.상세로그 위치 /var/log/hue에는 현재 비어있는 상태입니다.답변을 기다리는 동안, 이전 작업 중에 실수가 있었는지 다시 확인해보겠습니다.강의 항상 잘 듣고 있습니다. 감사합니다.사진 1: Python 설치 확인 캡처사진 2: Cloudera 웹 UI에서 Hue 구성 중 발생한 오류 화면 사진 3: 상세 로그 화면 캡처
-
해결됨자바 ORM 표준 JPA 프로그래밍 - 기본편
join fetch를 사용하지 않아도 쿼리가 한번 조회
6:46초에서 설명하시는대로 패치 조인을 사용하지 않고, 기본 조회만 했을 때 프록시로 인해 지연 로딩이 발생할 것으로 기대했으나, 마치 패치 조인처럼 한번만 조회되고 모든 데이터가 출력됩니다.원인을 잘 모르겠는데 알려주세요.Team은 LAZY 조인으로 설정되어 있음Team teamA = new Team(); teamA.setName("teamA"); em.persist(teamA); Team teamB = new Team(); teamB.setName("teamB"); em.persist(teamB); Member member1 = new Member(); member1.setUsername("USER1"); member1.changeTeam(teamA); em.persist(member1); Member member2 = new Member(); member2.setUsername("USER2"); member2.changeTeam(teamA); em.persist(member2); Member member3 = new Member(); member3.setUsername("USER3"); member3.changeTeam(teamB); em.persist(member3); List<Member> noFetchJoin = em.createQuery("SELECT m FROM Member m", Member.class).getResultList(); for (Member member : noFetchJoin) { System.out.println("member: " + member.getUsername() + " | Team: " + member.getTeam().getName()); } 결과:
-
미해결제로베이스부터 배우는 웹개발의 개념과 바이브 코딩
CSS 적용이 안되는 문제
안녕하세요!Portfolio 제작 강의를 따라하던 중,지속적으로 CSS가 적용되지 않는 문제가 발생하여 문의드립니다. 화면 속 글자가 움직이는 걸로 보아 JS는 연동이 된 것 같은데 CSS가 문제가 있는 것 같아요. agent가 계속 해결을 못해서 문의 남깁니다.
-
미해결
Understanding Academic Articles for Nursing Projects
Understanding Academic Articles for Nursing ProjectsIn nursing education, academic BSN Class Help articles play a vital role in shaping the knowledge base, critical thinking skills, and evidence-based practices of future nurses. Whether you're working on a research project, literature review, case study, or capstone assignment, being able to effectively understand and interpret academic articles is a crucial skill. These sources form the foundation of scholarly work and help bridge the gap between theory and clinical application.However, for many nursing students, academic literature can be intimidating. Dense language, complex study designs, and unfamiliar terminology can make even the most informative articles feel inaccessible. Developing the ability to analyze, evaluate, and apply scholarly articles is not only essential for academic success but also a stepping stone toward becoming a reflective and evidence-informed practitioner.This article offers an in-depth guide to understanding academic articles in the context of nursing projects, covering types of academic sources, reading strategies, critical appraisal techniques, and ways to integrate findings into your work.Not all academic articles serve the same purpose. Here are the main types nursing students should be familiar with:Original Research ArticlesThese present findings from new, primary studies. They typically include sections like Introduction, Methods, Results, and Discussion.Evidence-based recommendations developed by panels of experts.Example: Guidelines for managing catheter-associated urinary tract infections.Understanding the type of article you’re reading helps you know how to use it in your own work.Structure of an Academic ArticleAcademic articles generally follow a standard structure, often referred to as IMRAD:IntroductionExplains the purpose of the study, identifies the research problem, and often ends with a hypothesis or objective.ConclusionSummarizes findings and suggests nurs fpx 4905 assessment 1 recommendations or future directions.Tip: Useful for extracting key takeaways.ReferencesLists all the sources cited, which can lead you to further reading.Reading Strategies for Academic ArticlesReading an academic article from beginning to end, word-for-word, is rarely efficient. Use the following strategies to approach articles more effectively:Skim FirstStart with the abstract, introduction, and conclusion. This gives you a quick overview of the article’s relevance.Scan for KeywordsFocus on terms directly related to your topic. Highlight unfamiliar terms to look up later.Read in SectionsTackle one section at a time, starting with the Discussion, then backtrack to the Results and Methods.Take NotesSummarize the article in your own words:What was the purpose?What were the main findings?How does it relate to your project?Ask Critical QuestionsWhat problem is this article addressing?Is the methodology sound?Are the conclusions supported by the data?What are the limitations?Even beyond graduation, being able to evaluate literature critically sets you apart as a reflective practitioner and a reliable voice in interdisciplinary healthcare teams.ConclusionUnderstanding academic articles nurs fpx 4055 assessment 2 may seem challenging at first, but with practice, the process becomes second nature. These articles are not just academic requirements—they’re windows into the evolving world of nursing science. From informing your school projects to guiding patient care, scholarly literature holds the evidence that modern nursing is built upon.By mastering how to read, evaluate, and apply academic articles, you’re not just improving your grades—you’re laying the foundation for a career grounded in critical thinking, evidence-based practice, and professional growth.The key is to start small, stay consistent, and ask the right questions. Over time, you'll move from intimidated reader to confident scholar, ready to engage with the best that nursing research has to offer.
-
해결됨옆집 개발자와 같이 진짜 이해하며 만들어보는 첫 Spring Boot 프로젝트
수업 자료는 어디에 있나요?
안녕하세요,수업자료 pdf는 어디에 있나요?
-
해결됨Next.js 완벽 마스터 (v15): 노션 기반 개발자 블로그 만들기 (with 커서AI)
unstable_cache 사용 시 적정 revalidate 값 문의
안녕하세요. 지금까지 알려주신 내용에서 Notion 통해 글을 추가/삭제했을 때, 그에 대한 반영이 이루어지기 위해 unstable_cache 적용 시 revalidate 옵션(단위: s(초))을 줘야 하는 것을 확인했습니다.(getPublishedPosts 구현부분에서 언급되지 않은부분이라 강의내용과 공식문서 토대로 동작 확인했습니다.)Notion이 아닌 실제 페이지에서 글쓰기를 했을 때는 revalidateTag 함수를 호출하여 캐시를 무효화시켰었습니다. 문제는 목록 가져올때도 매번 revalidateTag 함수를 사용하게 된다면 캐시 사용하는게 무의미해질거라 생각합니다.즉시 반영을 위해서는 Webhook 연동이 필요해보이나, 생각보다 구현 난이도가 복잡해서 revalidate를 적절하게 주는게 좋을거라 생각했습니다. 그렇다면 효율적인 revalidate 값은 어느정도로 지정하는게 좋을까요?? TanStack Query ClientProvider에서 지정한 것처럼 1분 정도가 적절하려나요?? 그리고 실제 구현 이루어지는 프로그램(ex. 쇼핑몰)에 따라 기준이 달라질 것 같은데요. 이에 대한 강사님 의견 듣고싶습니다.
-
해결됨홍정모의 따라하며 배우는 C++
프로그래머스 수열과 구간 쿼리 2 문제 질문입니다.
제가 짠 코드인데 이게 왜 틀렸을까요? 알려주시면 감사하겠습니다.
-
해결됨[퇴근후딴짓] 빅데이터 분석기사 실기 (작업형1,2,3)
원핫 인코딩 , 라벨인코딩 선택의 기준
안녕하세요. 수강중 문의드립니다전처리 파트 중 인코딩 부분에서,인코딩 했을 때 칼럼수가 너무 많아질 경우원핫 말고 라벨인코더를 사용하는데요시험장 컴퓨팅 환경을 기준으로컬럼이 몇개 오버될경우라벨인코더를 사용하면 좋을지에대해 기준점을 제시해주시면 감사하겠습니다.(현재 200개 언더로는 원핫 쓰고 그이상은 라벨인코더 쓰는 식으로 하고있습니다)