Skip to content

Instantly share code, notes, and snippets.

View Leonnmarshall's full-sized avatar
🏠
Working from home

Leonardo Marçal Leonnmarshall

🏠
Working from home
View GitHub Profile
@franciscojsc
franciscojsc / ImparOuPar.py
Created October 29, 2017 01:01
Número par ou Impar em Python
numero = float(input('Digite um número para saber se é par ou impar:'))
resto = numero % 2
if resto == 0:
print('Número é par')
else:
print('Número é impar')
@mGalarnyk
mGalarnyk / assignment1.md
Last active September 11, 2023 08:00
R Programming Programming Assignment 1 (Week 2) John Hopkins Data Science Specialization Coursera for the github repo https://github.com/mGalarnyk/datasciencecoursera

R Programming Project 1

github repo for rest of specialization: Data Science Coursera

For this first programming assignment you will write three functions that are meant to interact with dataset that accompanies this assignment. The dataset is contained in a zip file specdata.zip that you can download from the Coursera web site.

Although this is a programming assignment, you will be assessed using a separate quiz.

The zip file containing the data can be downloaded here: specdata.zip [2.4MB]

@mGalarnyk
mGalarnyk / quiz1.md
Last active February 20, 2024 23:43
R Programming Quiz 1 (Week 1) John Hopkins Data Science Specialization Coursera for the github repo https://github.com/mGalarnyk/datasciencecoursera

R Programming Quiz 1 (JHU) Coursera

github repo for rest of specialization: Data Science Coursera

Question 1

R was developed by statisticians working at...

Answer

The University of Auckland