Questions and Answers
Problems and Solutions
Quotes help make search much faster. Example: "Practice Makes Perfect"
Wednesday, September 4, 2019
Codecademy Learn R Loading and Saving CSVs 4/12
#Sample Solution
---
title: "Introduction to Data Frames in R"
output: html_notebook
---
```{r message=FALSE, warning=FALSE}
# load libraries
library(readr)
library(dplyr)
```
```{r}
# load data frame
artists <- read_csv('artists.csv')
artists
```
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
This is an example of
scrolling text
using Javascript.
Popular Posts
Codecademy: "E-I-E-I-O"
#sample solution pyg = 'ay' original = raw_input('Enter a word:') if len(original) > 0 and original.isalpha(): p...
Compounding: Finding the Present Value of an Annuity
A typical compounding problem would be something like: How much is the equivalent Present Value (P) if an investment pays an amount (A...
Codecademy Sample Solution: Codeyear Anchors Away
<style> p { font-family: sans-serif; font-size:18px;} div#welcome p{ font-family: cursive; font-size: 24px; color: white; b...
Codecademy: Instantiate an Object
#sample solution class Triangle(object): #member variables number_of_sides = 3 #methods def __init__(self, angle1, angle2, angle...
Codecademy Sample Solution: Codeyear What is class to id?
<style> #content p {color: yellow;} p {color: purple;} p {color: green;} </style> <div id="content...
Codecademy: String Rotation
// Sample solution // Write a string rotation method. // It should pass all the tests given below. String.prototype.rotate = function(n...
Codecademy Using Documentation 7/8
// Sample Solution using System; namespace DocumentationHunt { class Program { static void Main(string[] args) { ...
Codecademy: Inheritance Syntax
#sample solution class Shape(object): """Makes shapes!""" def __init__(self, number_of_sides): self....
Codecademy: Sample Solution to "Getting Pickyer"
//Sample solution to script.js $('document').ready(function() { $('#emptyTrash').click(function() { //remove the elemen...
Compounding: Finding the Present Value given the Future Value
A typical compounding problem would be something like: What is the present value (P) of a future value (F) if (P) was deposited/lent a...
No comments:
Post a Comment