분류 전체보기 (1787) 썸네일형 리스트형 전세계 코로나 데이터 분석에 관하여 by 영웅 A to Z %% CFR comparison between high-income and low-income (hypothesis test) % the path of data excel – maybe you can find in the kaggleexcelFilePath = "C:\Users\jarid\OneDrive\바탕 화면\penguin\covid_data.xlsx"; % Read the data from the data excel filedata = readtable(excelFilePath, 'Sheet', 'Tab 1'); % Allocate the 'Confirmed' and 'Deaths' columns directlyconfirmed = data.Confirmed;deaths = data.Death.. 전세계 코로나 데이터 분석에 관하여 (3) by 영웅 A to Z %% CFR comparison between good report system and bad report system (hypothesis test) %this is to know the mean valueall_numbers_report = data.Report;all_numbers_reportNoNan = all_numbers_report(~isnan(all_numbers_report));mean(all_numbers_reportNoNan) % 0.0736% I need to multiply 100 % because I got those numbers Report = (total test) / (total population); % this is just the ratio not population.. 전세계 코로나 데이터 분석에 관하여 (2) by 영웅 A to Z %% CFR comparison between old countries and young countries (hypothesis test) % According to the UN standards, % the proportion of peoper aged 65 or older, is more than 7% -> aging society % ~ if that proportion > 14% -> aged society% if more than 20% -> super-aged society young_society = data.old aging_society = (data.old > 7) & (data.old aged_society = (data.old > 14) & (data.old super_aged_.. 전세계 코로나 데이터 분석에 관하여 (1) by 영웅 A to Z %% CFR comparison between high-income and low-income (hypothesis test) % the path of data excel – maybe you can find in the kaggleexcelFilePath = "C:\Users\jarid\OneDrive\바탕 화면\penguin\covid_data.xlsx"; % Read the data from the data excel filedata = readtable(excelFilePath, 'Sheet', 'Tab 1'); % Allocate the 'Confirmed' and 'Deaths' columns directlyconfirmed = data.Confirmed;deaths = data.Death.. 한국어 어휘량을 폭발적으로 증가시키는 앱에 관하여 (+a) by 영웅 A to Z // same function, different + similiar style // you don't need this to make it work but rewriting is fun for me package com.example.chimchak; import org.apache.poi.ss.usermodel.*; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import java.io.File; import java.io.FileInputStream; import java.util.*; public class KoreanTextGame { private static List arrayKoreanSentences = new ArrayList().. 한국어 어휘량을 폭발적으로 증가시키는 앱에 관하여 (9) by 영웅 A to Z 앱의 사용법에 관하여 일단 먼저, 이 글을 우연히 읽게 된 분께 미안하다고 말하고 싶네요 왜냐하면, 이 앱 자체는 웹을 사용한다든지 마켓에서 쉽게 다운받을수 있는 형식으로 되어있지 않기 때문입니다. 얼마든지 그렇게 할 수 있는 저로써는 이 앱을 번거롭게 이렇게 올리게 된 점에 대하여 먼저 미안하다고 말하고 싶네요 굳이 그 이유까지는 말할 필요가 없겠지만, 나름의 이유가 있습니다 그럼 바로 본론으로 가볼까요 일단 이 그림이 이 앱의 거의 전부라고 할 수 있습니다. 이 사진만 보더라도 이 앱을 다 본거라고 말해도 무방할 정도에요. 쉽게 말해서 이 앱은 한국어 단어에 대하여 문맥을 제시하고 그것을 토대로 유저가 아웃풋을 시도하는 혹은 연습하는 앱입니다. 무언가를 암기할 때 그냥 인풋만 해서.. 한국어 어휘량을 폭발적으로 증가시키는 앱에 관하여 (8) by 영웅 A to Z 모든 내용은 저에 의하여 작성되었습니다 제목에도 (8)이라는 표기가 있듯이 이 앱 전체를 보려면 이 제목 숫자 전체를 보아야 합니다 이는 블로그라는 한계 때문입니다 참고 부탁드립니다이 내용은 이 앱에 사용되는 기반 데이터입니다 당연히 이 내용은 유저가 원하는 거에 따라 얼마든지 달라질 수 있습니다 더 정확한 내용은 (9)번 글 이 앱의 사용법을 참조해주세요 한국어 어휘량을 폭발적으로 증가시키는 앱에 관하여 (7) by 영웅 A to Z 모든 내용은 저에 의하여 작성되었습니다 제목에도 (7)이라는 표기가 있듯이 이 앱 전체를 보려면 이 제목 숫자 전체를 보아야 합니다 이는 블로그라는 한계 때문입니다 참고 부탁드립니다 package com.example.chimchak;import java.util.*;import javafx.application.Application;public class MainApplication { public static void main(String[] args) { KoreanTestGame testGame = new KoreanTestGame(); testGame.start(); String userLevel = testGame.getUserLevel(); .. 이전 1 ··· 8 9 10 11 12 13 14 ··· 224 다음