Publications by mishou:

Finding missing values with R and Python

04.04.2021

I.欠損値を見つける RとPythonでデータの欠損値の見つけ方を紹介します。 データは次にリンクされているDC comicsやMarvel comicsなどのヒーローのデータです。 DC Comics vs Marvel Comics — Exploratory Data Analysis and Data Visualization with R II.Rの場合 必要なライブラリをインポ�...

673 sym R (5768 sym/21 pcs) 3 img

Learning list comprehension with practice problems for beginners

01.04.2021

I.何をする? 次の解説にしたがいlist comprehensionsを練習問題で学びます。 Python初心者向けです。 Beginner to Advanced List Comprehension Practice Problems II.「繰り返し」って? 「繰り返し」というと、まず、同じ数字や文字を繰り返すことを思い浮かべます。 例えば、3を5...

1627 sym R (13261 sym/30 pcs)

Generate sample data with Python

31.03.2021

I.何をする? 次の解説を参考にして、サンプル・データを作成方法を学びます。合わせて、Pythonの基本的な使い方を学びます。 Generate Your Sample Dataset — A Must Have Skill For Data Scientists. How to Generate Random Numbers in Python II.使用する基本的な関数 1.random The pseudorandom n...

828 sym R (1774 sym/12 pcs)

Learning Bayesian Inference

10.03.2021

I. Learning Bayesian inference Let’s learn the difference between the frequentist and the Bayesian approach of reasoning according to the following article. A gentle Introduction to Bayesian Inference References Bayes’ rule with a simple and practical example Probability concepts explained: Maximum likelihood estimation II. A short story Fre...

2509 sym

Learning Lambda Functions

03.03.2021

I.何をする? 次を参考にして、Lambda functionsを学びます。 How to Use Python Lambda Functions Python II.Regular fybctuibsとLambda functionsの形 例えば、食料品の消費税を計算する関数を作成して、100円の商品の税を算出するスクリプは次です。 def myfunc(x): return x*0.08 myfunc(100) ## ...

588 sym R (1277 sym/30 pcs)

Learning dplyr

21.03.2021

I.Five things dplyr can do We’ll learn the things you don’t expect you can do with dplyr. Keith McNulty, Five thinngs you never knew you could do with dplyr II.Before we start First you have to find out the version of your dplyr package. You will learn some functions that are either new to dplyr 1.0.0+ or substantially improved. This is how ...

1538 sym R (4495 sym/20 pcs) 2 img

Learning lm()

21.03.2021

何をする? dplyrの解説について調べていると、lm()やbline()、plot()nなどの長らく使っていない関数が説明されていました。 なつかしいので、baseの関数を含めて、簡単な集計の仕方を復習します。 R初心者向けの説明です。 I.データのロード 試験結果のサンプル...

1756 sym R (1791 sym/13 pcs) 3 img

Learning distribution with Python

25.03.2021

I.何をする? 次を参考にして確率分布にして学びます。 6 Useful Probability Distributions with Applications to Data Science Problems Fun with the Binomial Distribution II.Binomial distribution You can answer the following question with binomial distribution. Given 10 flips of a fair coin, what is the probability of getteing ...

635 sym R (255 sym/3 pcs) 1 img

Reading Voteview.com with R

26.03.2021

I.何をする? 次のデータを集計します。 voteview.com Rvoteviewを使用します。 https://github.com/voteview/Rvoteview II.Voteview.comについて 108,335の米国上院、下院の投票結果が記録れています。 トップページには、直近の上院の法案の値投票結果が表示されています。 クリ�...

411 sym R (2044 sym/13 pcs) 1 img

Vaccinations Data in COVID-19 Data Hub

29.03.2021

I.何をする? COVID-19 Data Hubのデータより各国のワクチンの接種数を比較する表を作成します。 https://covid19datahub.io/articles/api/python.html II.データの取得 使用するライブラリをインストールします。 # conda install -c conda-forge klib from covid19dh import covid19 import klib import pa...

787 sym R (5117 sym/20 pcs) 1 img