Publications by mishou:
Rows and Columns in R and Python
I. 行と列(R) 次の数値を表にし、会社別に何人分のワクチン数があるかのバー・プロットを作成します。 日本政府は、ファイザーから年内に1億4400万回分(7720万人分)の供給を受ける契約を結んでいるほか、英アストラゼネカから1億2000万回分(6000万人分�...
692 sym R (2121 sym/14 pcs) 2 img
Learning Pandas on Cheat Sheet
チート・シートで学ぶPandas Pandasは、データ・フレーム(Excelのシートに似た形)を処理するライブラリです。 Pythonをマスターするのに、表計算に慣れているなら、Pandasから学ぶのが近道です。 Pandasのチート・シートにそって学べば暗記しやすいですが、初心�...
2473 sym R (8352 sym/39 pcs) 1 img
How to write loops in Python
I.何をする? 次の文書を参考にしてPythonのエレガントなloopsの処理を学びます。 https://medium.com/techtofreedom/the-art-of-writing-loops-in-python-68e9869e4ed4 プログラムを始めたばかりの方向けにloopsの基本から説明します。 II.Loopsの基本 プログラミングを始めたばかりとい�...
1033 sym R (647 sym/12 pcs)
Scraping BBC News with Beautifulsoup
I.何をする? 次を参考にしてBeautifulsoupの使い方を学びます。 Super Simple Way to Scrape BBC News Articles in Python II.仮想環境の作成 Iのリンク文書に書かれています。 III.Beautifulsoupでデータを取得 1.BBCのトップページを読み込む # import libraries import requests from bs4 import Bea...
886 sym R (3518 sym/7 pcs) 2 img
Detecting outliers, using data.table
データの読み込みと平均出席率の算出 データは1回から6回までの出欠です。1が出席で0が欠席です。 # import a library library(data.table) library(ggplot2) # load the data df <- read.csv("https://pastebin.com/raw/SfF7QiwE") dt <- data.table(df) head(dt) ## id l1 l2 l3 l4 l5 l6 class ## 1: 1 0 1 1 0 0 0...
248 sym R (2528 sym/13 pcs) 3 img
Create a Graph with Google Trends and R
I. What shall we learn? Let’s learn how to pull data from Google Trends in R, using a package called gtrendsR. Refer to Google Trends data analysis in R II. Scripts 1. First, let’s pull trends data for keywords “オリンピック” from the last 12 months and for searches made in Japan. # import libraries library(gtrendsR) library(tidyve...
609 sym R (4069 sym/14 pcs) 2 img
Introduction to Introduction to tmap
I.何をする? 次にしたがいtmapの使い方を学びます。 https://cran.r-project.org/web/packages/tmap/vignettes/tmap-getstarted.html II.サンプル・データ 次でサンプル・データを呼び出すことができます。“World”はsf packageのもので、各国の人口やGDPなど基本的な情報が含まれてい�...
377 sym R (2674 sym/9 pcs) 2 img
Learning Regex
I.Regexで何ができる? 1.特定の文字列の出現数の算出 Rgexで文字列の中に特定のパターンの出現回数を算出したいとします。 For loopsを用いるより、簡単なコードになります。 for loopを用いる: string = "総理大臣の指名かける?菅...だと思うけど、漢字書けない。...
392 sym R (628 sym/6 pcs)
Learning Linear Regression with moderndive in R
Moderndive We will learn linear regression with Moderndive. The moderndive R package consists of datasets and function for tidyverse-friendly introductory linear regressions. Refer to: https://moderndive.github.io/moderndive/ library(moderndive) score_model <- lm(score ~ age, data = evals) Get a tidy regression table with confidence intervals g...
668 sym R (1283 sym/7 pcs) 1 img
Document
Scraping HTML tables Let me show you how to scrape HTML tables with R. The HTML tables are here: http://www.mishou.be/2021/10/04/pythonr-sample-data-for-data-analysis/ You can also learn how to scrape HTML tables with Python here: http://www.mishou.be/2021/10/04/pythonr-sample-data-for-data-analysis/. # import libraries library(htmltab) library(t...
316 sym R (1522 sym/6 pcs)