묻고 답해요
158만명의 커뮤니티!! 함께 토론해봐요.
인프런 TOP Writers
-
해결됨[퇴근후딴짓] 빅데이터 분석기사 실기 (작업형1,2,3)
실기환경에서 오류 문의
학습 관련 질문을 남겨주세요. 상세히 작성하면 더 좋아요!질문과 관련된 영상 위치를 알려주면 더 빠르게 답변할 수 있어요먼저 유사한 질문이 있었는지 검색해보세요 실기체험하는대서 아래처럼 쓰고 실행했더니import pandas as pd df = pd.DataFrame({ '키': [150, 160, 170, 175, 165, 155, 172, 168, 174, 158, 162, 173, 156, 159, 167, 163, 171, 169, 176, 161], '몸무게': [74, 50, 70, 64, 56, 48, 68, 60, 65, 52, 54, 67, 49, 51, 58, 55, 69, 61, 66, 53]}) from statsmodels.formula.api import ols model = ols('키 ~ 몸무게', data=df).fit() print(model.summary())아래처럼 나오는데, 왜 그런건가요?Notes:[1] Standard Errors assume that the covariance matrix of the errors is correctly specified.
-
미해결코틀린 문법부터 실무까지 (실전 자바->코틀린 변환)
@MockK에서 null을 할당하는 이유?
37강 5분 11초에서 "처음에는 null로 되어있지만 값을 한 번 세팅할 수 있게 해주고 싶다."라고 하셨는데처음부터 null을 할당하지 않으면 lateinit을 사용 안 할 수도 있는 거 아닌가요?테스트코드에 대한 이해가 하나도 없어서 고른 강의인지라 질문의 깊이가 너무 없지만 답변주시면 감사합니다!!
-
미해결[유니티 레벨 업!] 모듈식으로 개발하는 스킬 시스템
스킬 관련 질문입니다
불덩이를 날리고 불덩이에 맞으면 데미지를 주고 화상이 1스택 쌓는 스킬이 있는데만약 다른 스킬을 획득하면 불덩이 스킬로 맞추어 데미지를 주었을 때폭발이 일어나 불덩이와 다른 데미지를 추가로 주고 화상을 2스택 쌓는 스킬을 붙이고 싶은데스킬에 스킬로 스킬에 달린 카테고리별로 이펙트를 추가하는 구현해 내었는데스킬에 스킬로 스킬을 추가하는 방법을 알고 싶습니다
-
해결됨[퇴근후딴짓] 빅데이터 분석기사 실기 (작업형1,2,3)
인코딩 선택 질문
LabelEncoder는 텍스트값을 정수로 바꿔주는 것만하고 서열관계는 모르기 떄문에 트리기반구조인 RF, LGBM에서는 괜찮지만 선형모델에서는 원핫인코딩이 더 적절하다는데 시험환경에서이것까지 신경써야할정도로 유의한 차이인가요? 아니면 선형모델에서도 라벨써도 크게 지장없나요?
-
미해결Airflow 마스터 클래스
connection type 추가하기중 docker image 생성 오류
강사님, 버전문제로 설치가 안되는것 같은데,어디서 upgrade를 해야 하나요? [+] Building 10.9s (6/7) docker:default => [internal] load build definition from Dockerfile 0.0s => => transferring dockerfile: 483B 0.0s => [internal] load metadata for docker.io/apache/airflow:2.10.5 0.0s => [internal] load .dockerignore 0.0s => => transferring context: 2B 0.0s => [1/4] FROM docker.io/apache/airflow:2.10.5 0.0s => CACHED [2/4] RUN apt-get update && apt-get install -y --no-install-recommends gcc heimdal-dev g++ libsasl2-dev && apt-get 0.0s => ERROR [3/4] RUN pip install pip install apache-airflow-providers-apache-hdfs pip install apache-airflow-providers-apache-hive 10.6s------ > [3/4] RUN pip install pip install apache-airflow-providers-apache-hdfs pip install apache-airflow-providers-apache-hive:8.415 Requirement already satisfied: pip in /home/airflow/.local/lib/python3.12/site-packages (25.0)9.209 ERROR: Could not find a version that satisfies the requirement install (from versions: none)10.1410.14 [notice] A new release of pip is available: 25.0 -> 25.1.110.14 [notice] To update, run: pip install --upgrade pip10.14 ERROR: No matching distribution found for install------Dockerfile:13-------------------- 12 | USER airflow 13 | >>> RUN pip install \ 14 | >>> pip install apache-airflow-providers-apache-hdfs \ 15 | >>> pip install apache-airflow-providers-apache-hive 16 | RUN pip uninstall -y argparse--------------------ERROR: failed to solve: process "/bin/bash -o pipefail -o errexit -o nounset -o nolog -c pip install pip install apache-airflow-providers-apache-hdfs pip install apache-airflow-providers-apache-hive" did not complete successfully: exit code: 1
-
미해결
표 채우기 코드 질문
제가 원하는 표 채우기 스크립트는 이렇게 되는데function OnScriptMacro_script26(){ HAction.GetDefault("CellBorderFill", HParameterSet.HCellBorderFill.HSet) with (HParameterSet.HCellBorderFill) { FillAttr.WinBrushFaceColor = RGBColor(255, 247, 204) } HAction.Execute("CellBorderFill", HParameterSet.HCellBorderFill.HSet)} 이걸 어떻게 하면 파이썬 코드로 바꿀 수 있을까요..?이렇게 했는데 적용이 안됩니다 ㅜㅠcolor = (255, 247, 204)hwp.HAction.GetDefault("CellBorderFill", hwp.HParameterSet.HCellBorderFill.HSet) hwp.HParameterSet.HCellBorderFill.FillAttr.WinBrushFaceColor = hwp.RGBColor(*color) hwp.HAction.Execute("CellBorderFill", hwp.HParameterSet.HCellBorderFill.HSet)
-
미해결
How AI Helps in Forex?
Revolutionizing Trading with Smart TechnologyIn recent years, Artificial Intelligence (AI) has significantly transformed the world of forex trading. From analyzing market trends to making real-time decisions, AI is reshaping how traders interact with the global currency markets. Whether you're a beginner or an experienced trader, understanding how AI works in forex can help you make smarter investment decisions. Especially in places like Dubai, where technology is growing rapidly, many traders now rely on AI tools to improve their success.In this article, we’ll explain in simple words how AI helps in forex, its benefits, and how it works. We’ll also explore how traders can use AI while working with the best ECN brokers in UAE and how it supports forex trading in Dubai.What is AI in Forex Trading?AI in forex trading means using machines or software that can think and learn like humans to help trade currencies. AI tools can analyze huge amounts of data quickly and identify patterns that human traders might miss. These tools can also make decisions without emotions, which is important in trading where panic or greed can lead to poor choices.AI systems are trained using historical data, market news, charts, and other indicators. Over time, they learn which strategies work best and keep improving themselves. This allows them to predict currency movements, manage risks, and execute trades at the best possible time.How AI Helps in Forex Trading1. Market AnalysisAI can scan and analyze thousands of charts, news articles, and economic reports in seconds. It can recognize patterns, spot trends, and suggest profitable trades. This is much faster and more accurate than manual analysis.2. Predicting Price MovementsUsing past data and real-time indicators, AI can predict how currency pairs might move in the future. These predictions help traders know when to buy or sell. For example, an AI model may predict that the EUR/USD pair will rise, prompting the system to buy before the price goes up.3. Automated Trading (AI Robots)Many forex traders now use AI trading bots or algorithms. These robots follow pre-set rules and can place trades automatically. They operate 24/7 and react instantly to market changes, which means no missed opportunities even when you’re asleep.4. Risk ManagementOne of the biggest benefits of AI in forex is risk control. AI tools can calculate how much money to risk on each trade and when to exit a bad trade to avoid bigger losses. This helps protect traders' investments and increase long-term success.5. Emotional ControlUnlike human traders, AI doesn’t panic, get greedy, or make emotional decisions. It sticks to the data and logic, which reduces risky behavior and helps keep trading consistent and disciplined.6. Backtesting StrategiesAI can test a trading strategy using historical data to see how it would have performed in the past. This allows traders to refine and improve their approach before risking real money.AI and Forex Trading in DubaiDubai is a growing financial hub, and forex trading is becoming increasingly popular. Traders in Dubai are now using AI-powered tools and apps to make smarter trading decisions. With high-speed internet, modern trading platforms, and supportive financial regulations, Dubai provides the perfect environment for AI-based trading.Many firms and individuals involved in forex trading in Dubai now use AI to gain an edge in the competitive market. These tools not only help them trade more efficiently but also attract global investors who are looking for innovative and secure ways to grow their money.Choosing the Best ECN Brokers in UAE with AI ToolsWhen using AI for forex, it's important to work with reliable brokers. Best ECN brokers in UAE provide direct access to the forex market without any middleman. This means tighter spreads, faster execution, and better transparency.Some ECN brokers also offer built-in AI features, like smart trading assistants, advanced charting, and algorithmic trading support. These brokers are ideal for traders who want to combine the power of AI with deep market access. Make sure the broker is regulated, offers strong security, and has a user-friendly trading platform.Benefits of Using AI in Forex TradingFaster Decision-MakingMore Accurate PredictionsLower Emotional Risk24/7 Trading Without SleepBetter Risk and Money ManagementTime SavingConsistent Strategy ExecutionFAQsQ1: Is AI trading safe for beginners? Yes, many AI tools are designed for beginners. However, it's still important to understand the basics of forex trading before fully relying on AI.Q2: Do I need to know coding to use AI in forex? No. Many trading platforms and apps offer ready-to-use AI tools without needing any coding knowledge.Q3: Can AI guarantee profits in forex trading? No system can guarantee profits. AI improves your chances by analyzing data and removing emotional decisions, but the forex market always carries risk.Q4: Are AI robots legal in UAE forex trading? Yes, as long as you use regulated platforms and follow local laws, using AI bots for forex trading is allowed in the UAE.Q5: Which is the best AI tool for forex traders in Dubai? There are many good tools like MetaTrader with AI plugins, Trade Ideas, and platforms provided by the best ECN brokers in UAE. Choose one that suits your level and goals.ConclusionAI is changing the way people trade forex by offering speed, accuracy, and emotion-free decision-making. Whether you’re just starting or are already trading at a high level, AI tools can make a big difference in your results. Especially in fast-moving financial hubs like Dubai, combining AI with reliable ECN brokers in UAE can give you the edge needed in today’s competitive forex market.If you're interested in forex trading in Dubai, now is the perfect time to explore how AI can boost your trading performance.
-
미해결
강의자료 문의
강의 내용에 강의자료 언급이 있는데, 자료를 찾을수가 없네요..강의자료 공유 요청 드립니다.
-
미해결평범한 직장인도 5분만에 만드는 AI 콘텐츠 (With 챗GPT, 미드저니, 생성형 영상툴)
자료실에 자료를 받고 싶은데 어디서 찾나요?
5강을 듣고 있는데 자료실에 있는 자료를 다운받고 싶은데 도무지 찾을 수가 없어서요.. 찾으신분은 도움 좀 부탁 드립니다. ; o ;
-
해결됨새싹부터 시작하는 Unity 게임 개발
8:56초 b.Remove(3) 부분 설명에 대해 질문드립니다.
b.Remove(3); // b리스트의 세 번째 값을 제거안녕하세요! 위처럼 설명해주셨는데, 세 번째 값 제거는 세 번째 인덱스인덱스처럼 보여져값이 3인 것을 제거하는 것으로 설명해주시는 것이 좀 더 명확한 설명이지 않나 싶어서 글 남깁니다.직접 코드를 b.Remove(300);을 해보니 값이 300인 요소가 지워졌습니다.
-
미해결
영상 재생이 안되요.
(후디니가 어려운 배경 모델러를 위한 실무 입문 강의, 섹션2 - 7. 돌맹이 만들기3 - For Loop Feedback활용)강의 영상이 재생이 안됩니다. 다른 강의는 잘됩니다.새로고침이나 인터넷 브라우저를 바꿔도 되지 않습니다. 같은 강의의 다른 영상은 잘되고있는데요. 어떤 문제가 있을까요?
-
미해결
맥os 기준 강의면 윈도우 사용자는 강의를 따라갈 수 없을까요?
비전공자 혼자서 하루 만에 수익화 앱 출시하기 해당 강의 관련해서 윈도우 수강자도 강의 수강이 가능한지 궁금합니다
-
해결됨[퇴근후딴짓] 빅데이터 분석기사 실기 (작업형1,2,3)
평가(분류) 시험장 제공여부 문의
학습 관련 질문을 남겨주세요. 상세히 작성하면 더 좋아요!질문과 관련된 영상 위치를 알려주면 더 빠르게 답변할 수 있어요먼저 유사한 질문이 있었는지 검색해보세요아래 예시로 적혀있는 코드들도 시험 때 주어지는지 아니면 암기해야하는지 문의드립니다.from sklearn.metrics import accuracy_score, precision_score, recall_score, f1_score, roc_auc_score # 정확도 print(accuracy_score(y_test, pred)) # 정밀도 print(precision_score(y_test, pred)) # 재현율 (민감도) print(recall_score(y_test, pred)) # F1 print(f1_score(y_test , pred)) # roc-auc print(roc_auc_score(y_test, pred_proba))
-
해결됨언리얼로 만드는 게임사운드 - 중.고급 과정
메타사운드 기초4영상 ladder filter 부분에 질문드립니다
15:29 영상 부분 질문드립니다. random(float)에서 min 700 max 1000으로 설정하셨습니다만 여기서 ladder filter에 있는 cutoff frequency 800값에 연결시켰습니다만 그러면 700 ~ 800 사이 랜덤값이 되는걸까요?
-
해결됨[퇴근후딴짓] 빅데이터 분석기사 실기 (작업형1,2,3)
submit 코드 2개 차이점 설명 부탁드립니다.
학습 관련 질문을 남겨주세요. 상세히 작성하면 더 좋아요!질문과 관련된 영상 위치를 알려주면 더 빠르게 답변할 수 있어요먼저 유사한 질문이 있었는지 검색해보세요2개 차이점 설명 부탁드립니다.
-
미해결자바(Java) 알고리즘 문제풀이 입문: 코딩테스트 대비
공통원소 구하기 질문입니다.
해당 코드의 실패 예시가 결과 값이 5 999999999 1000000000 가 출력 되야 되는데 5만 출력 됩니다.위의 코드에서 flist, slist를 ArrayList로 선언 했는데 이를 int[]로 변경 후 동작을 하면 정상적으로 동작이 됩니다.int[]로 선언 했을 때랑 ArrayList로 선언 했을때 차이가 있는건지 제가 while문안에 비교를 잘못한건지 모르겠어서 질문드립니다..
-
미해결React Native with Expo: 제로초에게 제대로 배우기
배포후 알람이 정상작동안합니다.
안드로이드 환경에서 apk를 만들어서 다른사람의 폰에 깔아보았습니다 apk의 pushtoken을 서버에 잘 담아서 보냈으나,expogo가 깔려있는앱에는 알람이 정상적으로 오지만, 깔려있지 않은앱에서는 알람이 안옵니다어떻게 해결할수있을까요? 백엔드코드 전달드립니다. // 푸시 알림 전송 함수 정의 function sendPushNotification($expoPushToken, $title, $body, $data = []) { $message = [ 'to' => $expoPushToken, 'sound' => 'default', 'title' => $title, 'body' => $body, 'data' => $data, ]; $ch = curl_init('https://exp.host/--/api/v2/push/send'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_HTTPHEADER, [ 'Accept: application/json', 'Accept-Encoding: gzip, deflate', 'Content-Type: application/json', ]); curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($message)); $response = curl_exec($ch); $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if ($httpCode != 200) { throw new Exception('HTTP 오류! 상태 코드: ' . $httpCode); } $result = json_decode($response, true); if ($result['data']['status'] === 'error') { throw new Exception('푸시 알림 전송 오류: ' . json_encode($result['data']['details'])); } return $result['data']['id']; }에러내용 : {"error":"InvalidCredentials","fault":"developer"}
-
해결됨서류합격률 4%를 탈출하는 개발자 이력서 작성법(실습 포함)
안녕하세요 브레인스토밍을 본격적으로 시작할건데요
제가 2021년부터 일을 시작해서다음과 같이 진행했어요2021년1월 회사 입사 클라우드 프로젝트 시작20241월 - 실무 2번째 프로젝트20251월- 퇴사2월 - 부트캠프 입과 - 부트캠프 첫번째 프로젝트3월 - 부트캠프 두번째 프로젝트4월 - 부트캠프 세번째 프로젝트5월 - 부트캠프 종료 - 항해99 교육 입과 - 맛집검색 서비스 개발제가 기억나는거 대표이름만 일단 적고 브레인스토밍은 아직 시작하지는 않았습니다.제가 여쭤보고 싶은건2022년 ~ 2023년까지 적은 내용이 없더라구요 그러면 이때 제가 어떻게든 무엇을 해야 하는지 작성해야 하는건지?아니면 그냥 이대로 작성해서 브레인 스토밍진행해도 무방하는지 궁금합니다.!!
-
미해결실전! GitHub Actions으로 CI/CD 시작하기
Basic Information에 다른 정보들이 뜨는데 이거 어떻게 해야 할까요?
-
해결됨Spring WebFlux + LLM 실전 구현
다음 강의는 언제 나올까요?
안녕하세요강의 잘 듣고있습니다. 혹시 다음 강의 일정 계획이 나온게 있을까요 ?