雖然這篇Read_csv dtype鄉民發文沒有被收入到精華區:在Read_csv dtype這個話題中,我們另外找到其它相關的精選爆讚文章
[爆卦]Read_csv dtype是什麼?優點缺點精華區懶人包
你可能也想看看
搜尋相關網站
-
#1在pandas上使用pandas.read_csv指定dtype float32 0.10.1
我試圖用pandas read_csv方法讀取一個簡單的空格分隔文件。然而,熊貓似乎並沒有服從我的說法。也許我錯誤地指定了它? 我把這個簡單的測試案例簡化爲read_csv。
-
#2pandas.read_csv — pandas 1.3.4 documentation
Passing in False will cause data to be overwritten if there are duplicate names in the columns. dtypeType name or dict of column -> type, optional. Data type ...
-
#3Python Pandas——Read_csv详解 - 知乎专栏
本文将以pandas read_csv方法为例,详细介绍read_csv数据读取方法。 ... data = pd.read_csv('diamonds.csv',dtype=object) data.head() out: carat ...
-
#4Pandas read_csv dtype指定除一列外的所有列 - 程式人生
【PYTHON】Pandas read_csv dtype指定除一列外的所有列. 2020-12-02 PYTHON. 我有一個csv檔案。它的大多數值我想作為字串讀取,但如果具有給定標題的列存在,我想將其 ...
-
#5Pandas read_csv() tricks you should know to speed up your ...
df = pd.read_csv('data/data_3.csv') df.info()RangeIndex: 4 entries, 0 to 3. Data columns (total 5 columns): # Column Non-Null Count Dtype
-
#6Pandas read_csv dtype read all columns but few as string
EDIT - sorry, I misread your question. Updated my answer. You can read the entire csv as strings then convert your desired columns to other ...
-
#7被Pandas read_csv 坑了 - IT人
誒,怎麼資料成了object?不應該是float嗎? 不管他,硬轉一發 df=pd.DataFrame(df,dtype=np.float).
-
#8Pandas read_csv dtype读取所有列,但很少读取为字符串
Pandas read_csv dtype read all columns but few as string我正在使用Pandas读取一堆CSV。将选项json传递给dtype参数,以告诉pandas将哪些列读取为 ...
-
#9python - Pandas read_csv dtype指定除一列外的所有列- IT工具网
data = read_csv('sample.csv', dtype=str) # reads all column as string if 'X' in data.columns: l = lambda row: True if row['X'] == 'True' else False if ...
-
#10Pandas read_csv dtype read all columns but few as string
Pandas read_csv dtype read all columns but few as string. EDIT - sorry, I misread your question. Updated my answer. You can read the entire csv as strings ...
-
#11How to specify dtype when reading a csv in Python - Kite
Specifying the dtype when reading a CSV file defines the data type for the values of the DataFrame. Use pandas.read_csv() specify dtype when reading a csv. Use ...
-
#12[Day09]Pandas索引的運用! - iT 邦幫忙
在 .read_csv() 中更改參數 index_col 可以將 column 設定成 index ,比較原本的和 ... 'Quantum of Solace', 'Skyfall', 'Spectre'], dtype='object', name='Film') ...
-
#13python - Pandas read_csv low_memory和dtype選項- IT閱讀
【python】Pandas read_csv low_memory和dtype選項 ... df = pd.read_csv('somefile.csv') 我得到: ... Specify dtype option on import or set low_memory=False.
-
#14Pandas read_csv() - How to read a csv file in Python
prefix: str Prefix to add to column numbers when no header, e.g. 'X' for X0, X1; dtype: Type name or dict of column -> type Data type for data ...
-
#15dask.dataframe.read_csv
dask.dataframe.read_csv(urlpath, blocksize='default', lineterminator=None, ... Dask dataframe tries to infer the dtype of each column by reading a sample ...
-
#16pandas.read_csv 详细介绍 - 盖若
pandas 的数据类型可参考dtypes。 # Type name or dict of column -> type, optional pd.read_csv(data, dtype=np.float64) # 所有数据均为此数据 ...
-
#17Pandas read_csv dtype read all columns but few as string
I'm using Pandas to read a bunch of CSVs. Passing an options json to dtype parameter to tell pandas which columns to read as string instead of the ...
-
#18pandas.read_csv 詳細介紹 - tw511教學網
pandas.read_csv 介面用於讀取CSV 格式數據檔案,由於它使用非常頻繁,功能 ... from io import StringIO pd.read_csv(StringIO(data), dtype=object).
-
#19Pandas read_csv low_memory和dtype选项 - CSDN博客
因为熊猫不知道它只是数字,它可能会保持它作为原始字符串,直到它读取整个文件。 指定dtypes(应始终执行). 添加. dtype={'user_id': int}. 到pd.read_csv ...
-
#20Pandas read_csv dtype specify all columns but one - Pretag
If you want to set the data type for the DataFrame columns, you can use the argument dtype , for example,EDIT - sorry, I misread your ...
-
#21BUG: Pandas 1.1.3 read_csv raises a TypeError when dtype ...
BUG: Pandas 1.1.3 read_csv raises a TypeError when dtype, and index_col are provided, and file has >1M rows #37094. Closed. 2 of 3 tasks.
-
#22specify dtype pandas read_csv Code Example
df = pd.read_csv('data.csv') ... Python answers related to “specify dtype pandas read_csv”. pandas read csv unamed:o · how to import csv in pandas ...
-
#23熊猫中的datetime dtypes read_csv - QA Stack
[Solution found!] 为什么它不起作用没有为read_csv设置datetime dtype,因为csv文件只能包含字符串,整数和浮点数。 将dtype设置为datetime将使熊猫将datetime解释为 ...
-
#24Columns have mixed types. Specify dtype option on import or ...
Let's start by just doing that. import pandas as pd pd.read_csv('file.csv'). Let's say you run into the following error: Solve DtypeWarning ...
-
#25How to read CSV File using Pandas DataFrame.read_csv()
read_csv () function takes an option called dtype. This lets pandas know what types exist inside your csv data. For example: by specifying dtype={'age':int} as ...
-
#26Pandas read_csv low_memory和dtype选项 - 中文— it-swarm.cn
打电话的时候df = pd.read_csv('somefile.csv') 我明白了: /Users/josh/anaconda/envs/py27/lib/python2.7/site-packages/pandas/io/parsers.py:1130:DtypeWarning: ...
-
#27pandasでcsv/tsvファイル読み込み(read_csv, read_table)
DataFrameとして読み込むには、pandasの関数read_csv()かread_table()を ... read_csv() では値から各列の型 dtype が自動的に選択されるが、場合 ...
-
-
#29Pandas read_csv low_memory和dtype选项- 问答 - Python中文网
为什么 dtype 选项与 low_memory 相关,为什么让它 False 有助于解决这个问题? 3条回答. 网友. 1楼·. df = pd.read_csv('somefile.csv', low_memory=False).
-
#30Python | Read csv using pandas.read_csv() - GeeksforGeeks
Code #1 : read_csv is an important pandas function to read csv files ... mangle_dupe_cols=True, dtype=None, engine=None, converters=None, ...
-
#31The Next Level of Pandas read_csv( ) | by Gustavo Santos
9 underused parameters of the well know Pandas' read_csv() method. ... just create a dictionary with the data types using the parameter dtype .
-
#32python pandas read_csv用法及代碼示例- 純淨天空
python pandas read_csv用法及代碼示例. ... prefix=None, mangle_dupe_cols=True, dtype=None, engine=None, converters=None, true_values=None, false_values=None, ...
-
#33pandas.read_csv()函式的簡介、具體案例、使用方法詳細攻略
Python之Pandas:pandas.read_csv()函式的簡介、具體案例、使用方法詳細攻略. ... dtype: Type name or dict of column -> type, optional.
-
#34熊猫read_csv low_memory和dtype选项 - Python 实用宝典
问题:熊猫read_csv low_memory和dtype选项. 回答0. 不推荐使用的low_memory选项. Dtype猜测(非常糟糕). 指定dtypes(应该总是这样做).
-
#35Pandas read_csv()函式| D棧
Pandas read_csv()函式將指定的逗號分隔值(csv)檔案讀取到DataFrame 中。 ... mangle_dupe_cols=True, dtype=None, engine=None, converters=None, ...
-
#36详解pandas的read_csv方法- 古明地盆 - 博客园
pandas在读取csv文件是通过read_csv这个函数读取的,下面就来看看这个函数都 ... df = pd.read_csv('girl.csv', delim_whitespace=True, dtype={"id": ...
-
#37Python 熊猫read_csv low_memory和dtype选项 - 有料how
dtype ={'user_id': int}. 调用pd.read_csv()会使熊猫在开始读取文件时知道,这只是整数。 还值得注意的是,如果文件的最后一行在user_id列中写入了“ ...
-
#38How to Change Data Type for One or More Columns in Pandas
df = pd.read_csv("weather.tsv", sep="\t", dtype={'Day': str,'Wind':int64}) df.dtypes. You can see the new data types of the data frame
-
#39Pandas read_csv mixed types question - Programmer Sought
DtypeWarning: Columns (1,5,7,16,......) have mixed types. Specify dtype option on import or set low_memory=False.
-
#40Reducing Pandas memory usage #1: lossless compression
import pandas as pd >>> df = pd.read_csv("voters.csv") ... Each column in a Pandas DataFrame is a particular data type (dtype).
-
#41Changing data type - Ritchie Ng
Method 2: Change datatype before reading the csv. In [11]:. drinks = pd.read_csv(url, dtype={'beer_servings':float}). In [12]:. drinks.dtypes. Out[12]:.
-
#42Pandas read_csv dtype=str fails on empty csv file - Google ...
df = pd.read_csv(f, dtype=str). This works great when the csv file has rows. However, when the daily csv file is empty (which can happen) ...
-
#43Pandas read_csv to DataFrames: Python Pandas Tutorial
import csv files to pandas DataFrame. specify data types (low_memory/dtype/converters). use a subset of columns/rows. assign column names with ...
-
#44pandas.read_csv
Passing in False will cause data to be overwritten if there are duplicate names in the columns. dtype : Type name or dict of column -> type, optional. Data type ...
-
#45Python pandas read CSV into DataFrame - PYnative
read_csv () is dtype : If we want to convert all the data into a single data type then we can use it as dtype=data_type; If we want ...
-
#46笨办法学分析[03]Pandas的read_csv的参数 - 简书
dtype : Type name or dict of column -> type, default None 每列数据的数据类型。例如{'a': np.float64, 'b': np.int32}.
-
#47Pandas如何读取csv作为字符串类型? - 问答- 云+社区 - 腾讯云
数据如下所示: A B 1A 0.209059 0.275554 1B 0.742666 0.721165. 然后我这样读取: df_read = pd.read_csv(savefile, dtype=str, index_col=0).
-
#48Pandas reading csv as string type - Intellipaat Community
df_read = pd.read_csv(savefile, dtype=str, index_col=0). and the result is: A B. B ( <. Is this a problem with my computer, or something I'm ...
-
#49Pandas read_csv dtype укажите все столбцы, кроме одного
Pandas read_csv dtype укажите все столбцы, кроме одного ... data = read_csv('sample.csv', dtype=str) # reads all column as string if 'X' in data.columns: l ...
-
#50Error - unable to read the csv file in pandas
... csv file import pandas as pd df=pd.read_csv(“data.csv”) the error ... prefix, mangle_dupe_cols, dtype, engine, converters, true_values, ...
-
#51scanpy.read_csv — Scanpy 1.8.2 documentation - Read the ...
scanpy.read_csv(filename, delimiter=',', first_column_names=None, dtype='float32') . Read .csv file. Same as read_text() but with default delimiter ',' .
-
#52Empty cells make Padas use float, even if read_csv(dtype ...
Pandas: Empty cells make Padas use float, even if read_csv(dtype={'FOO': str}) is used · Code Sample, a copy-pastable example if possible.
-
#53Pandas Tutorial: Importing Data with read_csv() - DataCamp
Importing Data is the first important step in any data science project. Learn how pandas' read_csv() function is perfect for this.
-
#54Handy Dandy Guide to Working With Timestamps in Pandas
If you just call read_csv, Pandas will read the data in as strings. ... df.dtypes #> Date datetime64[ns] #> dtype: object ...
-
#56Overview of Pandas Data Types - Practical Business Python
This article will discuss the basic pandas data types (aka dtypes ) ... as np import pandas as pd df = pd.read_csv("sales_data_types.csv") ...
-
#57read_csv dtype int - 掘金
read_csv dtype int技术、学习、经验文章掘金开发者社区搜索结果。掘金是一个帮助开发者成长的社区,read_csv dtype int技术文章由稀土上聚集的技术大牛和极客共同编辑 ...
-
#58Pandas 读取csv 文件提示:DtypeWarning - 老王博客
read_csv (f) # 警告 sys:1: DtypeWarning: Columns (3) have mixed types. Specify dtype option on import or set low_memory= ...
-
#5915 ways to read CSV file with pandas - ListenData
This tutorial explains how to read a CSV file using read_csv function of pandas package in Python. ... mydata.shape mydata.columns mydata.dtypes
-
#60Pandas read_csv low_memory and dtype options - MY BELIEFS
Pandas read_csv low_memory and dtype options. If you are getting low memory error while trying to upload a large CSV file in the pandas data ...
-
#61Pandas read_csv low_memory and dtype options
Pandas read_csv low_memory and dtype options. When calling df = pd.read_csv('somefile.csv') ... Specify dtype option on import or set low_memory=False.
-
#62Load a pandas DataFrame | TensorFlow Core
df = pd.read_csv(csv_file) ... If your data has a uniform datatype, or dtype , it's possible use a pandas ... Tensor: shape=(), dtype=int64, numpy=0>) (<tf.
-
#63pandasでデータを読み込むときに気を付けること(dtypeの指定)
df.dtypes でidのデータ型を確認するとintになってしまっています。 このような場合は、. Copied! df = pd.read_csv('data_1.txt ...
-
#64How to deal with errors of defining data types in pandas ...
df = pd.read_csv(filename, header=None, sep='|', usecols=[1,3,4,5,37,40,51,76]) df = df.convert_dtypes(). then check the type of the columns print(df.dtypes).
-
#65Python pandas.read_csv函数方法的使用
请设置 False ,. 或使用dtype参数指定类型。请注意,. 整个文件都被读入单个 DataFrame 中,. 使用 chunksize 或 iterator 参数以块的形式返回数据。 ( ...
-
#66Pandas Read CSV Tutorial: How to Read and Write - Erik Marsja
Finally, we will also learn how to convert data according to specific datatypes (e.g., using Pandas read_csv dtypes parameter).
-
#67[python] 팬더 read_csv low_memory 및 dtype 옵션 - 리뷰나라
dtypes 지정 (항상 수행해야 함). 첨가 dtype={'user_id': int}. 받는 사람 pd.read_csv() 이 파일을 읽기 시작할 때 호출이는 정수이다, 팬더가 알고 있어야합니다.
-
#68pandas Tutorial => Parsing date columns with read_csv
Date always have a different format, they can be parsed using a specific parse_dates function. This input.csv: 2016 06 10 20:30:00 foo 2016 07 11 19:45:30 ...
-
#69詳説Pandasのread_csvとread_table関数の使い方 - DeepAge
データ型を指定する dtype. 次は読み込む際のデータ型を指定します。 この引数は engine='python' のときだと無効になる ...
-
#70Pandas read_csv low_memory y dtype opciones - it-swarm-es ...
Pandas read_csv low_memory y dtype opciones. Al llamar df = pd.read_csv('somefile.csv').
-
#71pandas read_csv中的datetime dtypes | 经验摘录 - 问题列表- 第 ...
没有为read_csv设置datetime dtype,因为csv文件只能包含字符串,整数和浮点数. 将dtype设置为datetime将使pandas将datetime解释为对象,这意味着您将以 ...
-
#72pandas的read_csv 的参数与DataFrame_Jae_Wang的博客
从文件读取数据返回data framepandas.read_csv参数详解read_csv,read_exceldf ... Pandas read_csv low_memory and dtype options 敢问这什么鬼?
-
#73[Python] Pandas 基礎教學
讀取CSV File import pandas as pd # 引用套件並縮寫為pd df = pd.read_csv('shop_list.csv') print(df). ❖ 讀取Html 檔案 ... dtype: object.
-
#74pyarrow.csv.read_csv — Apache Arrow v6.0.1
Read a Table from a stream of CSV data. Parameters. input_file (string, path or file-like object) – The location of CSV data. If a string or path ...
-
#75A Basic Introduction to Reading and Writing CSV Files using ...
Pandas read_csv dtype. We can also set the data types for the columns. Although, in the ...
-
#76Python Examples of pandas.read_csv - ProgramCreek.com
This page shows Python examples of pandas.read_csv. ... label_key='labels', has_height_width=True): labels = pd.read_csv(fn, dtype={'image_id': str, ...
-
#77Error Pandas read csv low memory and dtype options - Edureka
When calling df = pd.read_csv('somefile.csv') I get: /Users/Niraj/anaconda/envs/py27/lib/ ... and why would making it False help with this ...
-
#78Data Types and Formats
Make sure pandas is loaded import pandas as pd # Note that pd.read_csv is used ... column in a DataFrame using the syntax dataFrameName[column_name].dtype :.
-
#79pandas.read_csv — pandas 0.18.1 documentation
dtype : Type name or dict of column -> type, default None. Data type for data or columns. E.g. {'a': np.float64, 'b': np.int32} (Unsupported with ...
-
#80How pandas infers data types when parsing CSV files - Artem ...
First off, there is a low_memory parameter in the read_csv function ... def try_int64(column): result = np.empty(column, dtype=np.uint64) ...
-
#81Pandas read_csv dtype leading zeros - TipsForDev
This is an issue of pandas dtype guessing. Pandas sees numbers and guesses you want it to be numbers. To make pandas not doubt your intentions, ...
-
#82Error while reading CSV file with pd.read_csv - Plotly ...
import pandas as pd df = pd.read_csv("https://raw.githubusercontent.com/plotly/datasets/master/fips-unemp-16.csv", dtype={"fips": str}).
-
#83Dynamically creating dtype dictionary for read_csv - Reddit
Obviously the fix would be to specify with the dtype parameter of read_csv. However, there are like 90+ columns in my dataset.
-
#84Data preparation — Anaconda Platform 5.5.1 documentation
Pandas data types or dtypes correspond to similar Python types. ... You can apply dtype and converters in the pd.read_csv() function. Defining dtype is like ...
-
#85Pandas read_csv low_memory und dtype Optionen - QA Stack
Angabe von dtypes (sollte immer erfolgen). Hinzufügen dtype={'user_id': int}. Bei dem ...
-
#86In-depth understanding of pandas read excel, txt, csv files and ...
Read commands can be read_csv or read_table. import pandas as pd. Df = pd.read_table("./test.txt") ... dtype, Data type of data or column, refer to read_csv.
-
#87pandas:データ型を指定してCSVファイルを読み込む方法
データ型を指定してCSVファイルを読み込むにはread_csvのdtypeを使用します。 test.csvのデータ id,name,count,rating 1,abc,13,4.38 2,defgh,4,8.56 ...
-
#88[Python pandas] text, csv 파일 불러오기 : pd.read_csv()
Python의 pandas library의 read_csv() 함수를 사용해서 외부 text 파일, csv 파일을 불러와서 DataFrame으로 저장하는 방법에 대해서 소개하겠습니다 ...
-
#89python - Pandas read_csv low_memory and dtype options
The deprecated low_memory option. The low_memory option is not properly deprecated, but it should be, since it does not actually do anything ...
-
#90read_csv to read data from CSV files - Plus2net
Reading data from CSV file and creating Pandas DataFrame using read_csv() in ... input data to convert it to a desired dtype using a conversion function.
-
#91How to read and write to a CSV File using Pandas - Spltech ...
Help on function read_csv in module pandas.io.parsers: ... prefix=None, mangle_dupe_cols=True, dtype=None, engine=None, converters=None, ...
-
#92解决pandas使用read_csv()读取文件遇到的问题
在使用read_csv() API读取CSV文件时求取某一列数据比较大小时, 复制代码 ... in : df.dtypes out: a object b object c object dtype: object.
-
#93python - 팬더 read_csv dtype은 모든 열을 읽지 만 문자열로 ...
feedArray = pd.read_csv(feedfile , dtype = dtype_dic) 필자의 시나리오에서는 특정 열을 제외한 모든 열을 문자열로 읽습니다. 따라서 dtype_dic 에서 str로 여러 ...
-
#94Creating Pandas Dataframe from CSV file and other file formats
pandas.read_csv(), Comma separated values (CSV) ... object State 18241 non-null object Time 18241 non-null object dtypes: object(4) memory usage: 712.5+ KB.
-
#95Pandas styler to latex
... accessed like pandas. read_csv() that generally return a pandas object. ... now supports pandas extension types as an argument to dtype, ...
-
#96Create pandas series - Fire Energy Solar
Table of ContentsUsing the read_csv() function to read text files in ... Series () print(ser) Output : Series ( [], dtype: float64) Creating ...
-
#97Create pandas series - goagilist.com
Series([], dtype='int') You can create a number of series with the different ... You can use the read_csv() method to create a Pandas Series from a csv file ...
-
#98Python數據分析-pandas進階-1-數據讀取與寫入
dtype, 接收dict,錶示寫入的數據類型,列名為key,數據格式為values。 ... df=pd.read_csv('data.csv',encoding='utf-8') ...
-
#99Iterate through columns in csv python - Vita Tricologia
Jul 29, 2020 · The pandas python library provides read_csv() function to import CSV ... Output: column1 foo column2 bar Name: 0, dtype: object column1 baz ...
read_csv 在 prasertcbs Youtube 的最佳解答
ดาวน์โหลดไฟล์ที่ใช้ในคลิปได้ที่ ► http://bit.ly/2PFjecR
เชิญสมัครเป็นสมาชิกของช่องนี้ได้ที่ ► https://www.youtube.com/subscription_center?add_user=prasertcbs
สอนการใช้โปรแกรม R เบื้องต้น ► https://www.youtube.com/playlist?list=PLoTScYm9O0GGSiUGzdWbjxIkZqEO-O6qZ
สอนการเขียนโปรแกรมด้วยภาษา R เบื้องต้น ► https://www.youtube.com/playlist?list=PLoTScYm9O0GF6qjrRuZFSHdnBXD2KVICp
สอน R สำหรับ Data Science ► https://www.youtube.com/playlist?list=PLoTScYm9O0GGat89RT9NMjW7sqFz84XSk
สอนการสร้างกราฟด้วยโปรแกรม R เบื้องต้น ► https://www.youtube.com/playlist?list=PLoTScYm9O0GEvw9bN_Q8nRdDUPyaSymqM
การสร้างกราฟด้วย ggplot2 ► https://www.youtube.com/playlist?list=PLoTScYm9O0GFEu7flht1Fv_gsT2mizgPW
สอนการใช้ dplyr package ► https://www.youtube.com/playlist?list=PLoTScYm9O0GEsJv4E4QmrBkdyax2IgRQG
สอนการใช้ tidyr package ► https://www.youtube.com/playlist?list=PLoTScYm9O0GFL9f4LpDa0zrh-rqzF3xdN
#prasertcbs #prasertcbs_R #prasertcbs_DataScience
read_csv 在 prasertcbs Youtube 的最讚貼文
การอ่านไฟล์ที่อยู่ในรูป
01:40 CSV (Comma-Separated Values)
03:14 TSV (Tab-Separated Values)
05:04 Excel
06:18 Zip
08:20 FWF (Fixed-Width Format)
ที่เก็บอยู่ใน github มาสร้างเป็น pandas dataframe
ดาวน์โหลด Jupyter Notebook ที่ใช้ในคลิปได้ที่: https://goo.gl/1hjHiB
เชิญสมัครเป็นสมาชิกของช่องนี้ได้ที่ ► https://www.youtube.com/subscription_center?add_user=prasertcbs
playlist สอน Python สำหรับ data science ► https://www.youtube.com/playlist?list=PLoTScYm9O0GFVfRk_MmZt0vQXNIi36LUz
playlist สอน Jupyter Notebook ► https://www.youtube.com/watch?v=f3CLdRl-zyQ&list=PLoTScYm9O0GErrygsfQtDtBT4CloRkiDx
playlist สอนภาษาไพธอน Python เบื้องต้น ► https://www.youtube.com/watch?v=DI7eca5Kzdc&list=PLoTScYm9O0GH4YQs9t4tf2RIYolHt_YwW
playlist สอนภาษาไพธอน Python การเขียนโปรแกรมเชิงวัตถุ (OOP: Object-Oriented Programming) ► https://www.youtube.com/watch?v=4bVBSluxJNI&list=PLoTScYm9O0GF_wbU-7layLaSuHjzhIRc9
playlist สอน Python 3 GUI ► https://www.youtube.com/playlist?list=PLoTScYm9O0GFB1Y3cCmb9aPD5xRB1T11y
playlist สอนการใช้งานโปรแกรม R: https://www.youtube.com/watch?v=UaEtZ5XzVeE&list=PLoTScYm9O0GGSiUGzdWbjxIkZqEO-O6qZ
playlist สอนการเขียนโปรแกรมภาษา R: https://www.youtube.com/playlist?list=PLoTScYm9O0GF6qjrRuZFSHdnBXD2KVICp