ورود به حساب

نام کاربری گذرواژه

گذرواژه را فراموش کردید؟ کلیک کنید

حساب کاربری ندارید؟ ساخت حساب

ساخت حساب کاربری

نام نام کاربری ایمیل شماره موبایل گذرواژه

برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید


09117307688
09117179751

در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید

دسترسی نامحدود

برای کاربرانی که ثبت نام کرده اند

ضمانت بازگشت وجه

درصورت عدم همخوانی توضیحات با کتاب

پشتیبانی

از ساعت 7 صبح تا 10 شب

دانلود کتاب R and Python for Oceanographers: A Practical Guide with Applications

دانلود کتاب R و Python برای اقیانوس شناسان: راهنمای عملی با کاربردها

R and Python for Oceanographers: A Practical Guide with Applications

مشخصات کتاب

R and Python for Oceanographers: A Practical Guide with Applications

ویرایش:  
نویسندگان:   
سری:  
ISBN (شابک) : 0128134917, 9780128134917 
ناشر: Elsevier 
سال نشر: 2019 
تعداد صفحات: 181 
زبان: English 
فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود) 
حجم فایل: 12 مگابایت 

قیمت کتاب (تومان) : 54,000



ثبت امتیاز به این کتاب

میانگین امتیاز به این کتاب :
       تعداد امتیاز دهندگان : 7


در صورت تبدیل فایل کتاب R and Python for Oceanographers: A Practical Guide with Applications به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.

توجه داشته باشید کتاب R و Python برای اقیانوس شناسان: راهنمای عملی با کاربردها نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.


توضیحاتی در مورد کتاب R و Python برای اقیانوس شناسان: راهنمای عملی با کاربردها



R و Python برای اقیانوس شناسان: راهنمای عملی با کاربردها کاربرد بسته های علمی Python و R را در تجزیه و تحلیل داده های اقیانوس شناسی، از جمله کدهای اسکریپت و خروجی های گرافیکی، توصیف می کند. هر فصل با پیشینه نظری شروع می شود که با مثال هایی گام به گام از برنامه های نرم افزاری شامل اسکریپت ها، گرافیک ها، جداول و تمرین های عملی برای درک بهتر موضوع دنبال می شود. مثال‌ها شامل رویکردهای تجزیه و تحلیل داده‌های پرکاربرد در اقیانوس‌شناسی فیزیکی و شیمیایی است، اما همچنین حاوی موضوعاتی در مورد واردات/صادرات داده‌ها و نقشه‌برداری GIS است. نمونه‌هایی که در کتاب مشاهده می‌شوند، استفاده از آخرین نسخه‌های کتابخانه‌های Python و R را ارائه می‌دهند.


توضیحاتی درمورد کتاب به خارجی

R and Python for Oceanographers: A Practical Guide with Applications describes the uses of scientific Python packages and R in oceanographic data analysis, including both script codes and graphic outputs. Each chapter begins with theoretical background that is followed by step-by-step examples of software applications, including scripts, graphics, tables and practical exercises for better understanding of the subject. Examples include frequently used data analysis approaches in physical and chemical oceanography, but also contain topics on data import/export and GIS mapping. The examples seen in book provide uses of the latest versions of Python and R libraries.



فهرست مطالب

Cover
R AND PYTHON
FOR OCEANOGRAPHERS
A Practical Guide with Applications
Copyright
1
Introduction to R and Python
	Introduction to R
	R environment
		Base system of R
		Add-on packages
	Installation of R
		Installation of R base software
		Installation of add-on packages
	Integrated development environments (IDEs) and editors for R
		Official R console and editor
		RStudio
	Useful R commands
	Getting help for R
	Introduction to Python
	Modules and packages in Python
	Python IDEs
	Installing Python and scientific Python distributions
		Using pip package
		Using package managers
		Using source files of packages
	Getting help for Python
	Some useful packages and libraries in R and Python for oceanography
	References
2
Data import and export in R and Python
	Object types in R
		Vectors
		Matrices
		Arrays
		Data frames
		Lists
		Factors
		Functions
	Data import in R
		Import from txt, dat, csv and Excel xls, xlsx files
		Import from netCDF4 file
		Import from mat files
		Import from SeaBird cnv files
		Import data from online databases
			Import tab delimited text data from LOBO-0010 Northwest Arm, Halifax, Canada
		Import csv.gz file from WOA13 V2
	Data export in R
		Export as txt, dat, csv and Excel xls, xlsx files
		Export as netCDF4 file
		Export as Matlab mat files
	Object types in Python
		Arrays in Numpy package
			Create an array
			Create array from existing data
		Series and data frame objects in Pandas package
			Pandas Series
			Pandas Data Frames
		User-defined functions in Python
	Data import in Python
		Import from txt, dat, csv, and Excel xls, xlsx files with Numpy loadtxt
		Import from Excel xls files with Pandas read_excel
		Import from Excel xlsx files with Pandas read_excel
		Import from netCDF4 file
		Import from Matlab mat files
		Import from Seabird cnv file
		Import data from online databases
			Import tab delimited text data from LOBO-0010 Northwest Arm, Halifax, Canada
			Import all data in a csv file
			Import block of data at defined ranges of rows and columns
			Subset data based on multiple criteria using column values
	Data export in Python
		Export as txt, dat, and csv files with Numpy savetxt
		Export as txt, dat and csv files with Pandas DataFrame.to_csv
		Export as xls, xlsx with Pandas ExcelWriter
		Export as netCDF4 files
		Export as Matlab mat files
	References
3
Plotting
	Plots in R
		High-level plotting functions
			plot() function
			Other high-level plotting functions
			Arguments to use with high-level plotting functions
			Low-level plotting functions
		Graphical parameters
			par() function
		Graphical parameters as arguments in graphics functions
		Most frequently used graphical parameters
		Plotting multiple figures
		Device drivers
		Example plots in R
	Plotting in Python
		Pyplot API
		Matplotlib API
	References
4
Physical oceanography examples
	Vertical profiling plots in R
	Time-series plots in R
	Temperature-salinity diagrams in R
	Maps in R
	Transect plots in R
	Surface plots in R
	Vertical profiling plots in Python
	Time series plots in Python
	Temperature-salinity diagrams in Python
	Maps in Python
	Transect plots in Python
	Surface plots in Python
	Animations in R and Python
	References
5
Chemical oceanography examples
	Vertical profiling plots in R
	Time-series plots in R
	Barplots in R
	Boxplots in R
	Pie charts in R
	3D plots in R
	Ternary plots in R
	Vertical profiling plots in Python
	Time-series plots in Python
	Barplots in Python
	Boxplots in Python
	Pie charts in Python
	3D plots in Python
	Ternary plots in Python
	References
Index
Back Cover




نظرات کاربران