Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

a3-Marko Vila-Drew Fisher- Brian Fay - Dylan Shanes #16

Open
wants to merge 33 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
21f13b9
Add Svelte Skeleton
Drewsapple Feb 3, 2022
dd332e6
Add server instructions
Drewsapple Feb 3, 2022
319a2b7
add example component
Drewsapple Feb 3, 2022
0e02bcf
basic d3 in example component
Drewsapple Feb 3, 2022
86f36e4
add google form test page
Drewsapple Feb 5, 2022
bfc4ebe
Add data generation code
dshanes Feb 9, 2022
cc2bf67
Merge branch 'main' of https://github.com/Drewsapple/a3-Experiment
dshanes Feb 9, 2022
c46556c
added graph box and response buttons
bcfay Feb 9, 2022
1fb4a9a
added results section
bcfay Feb 9, 2022
79bdbe1
Started adding code for the graph module. Was having issues trying to
mvilaa Feb 9, 2022
da55ed5
Merge branch 'main' of https://github.com/Drewsapple/a3-Experiment
mvilaa Feb 9, 2022
9466522
added number box for guesses
bcfay Feb 10, 2022
a6493e1
Copy outputs.json to static
Drewsapple Feb 10, 2022
6a8a36e
Update graphs
Drewsapple Feb 10, 2022
29e6506
bug fix
bcfay Feb 12, 2022
086e986
Submit to google form and show question
Drewsapple Feb 15, 2022
678dccd
Merge branch 'main' of https://github.com/drewsapple/a3-Experiment in…
Drewsapple Feb 15, 2022
b968f9e
Create CNAME
Drewsapple Feb 15, 2022
03e6735
Configure for github pages
Drewsapple Feb 15, 2022
f97ade6
Merge branch 'main' of https://github.com/drewsapple/a3-Experiment in…
Drewsapple Feb 15, 2022
2e005a0
Add landing, narrow down questions, add thanks
Drewsapple Feb 15, 2022
a4e7ac9
Create CNAME
Drewsapple Feb 15, 2022
b7a660b
baked questions
Drewsapple Feb 15, 2022
d5bc426
Merge branch 'main' of https://github.com/drewsapple/a3-Experiment in…
Drewsapple Feb 15, 2022
3949f69
rebuild docs
Drewsapple Feb 15, 2022
fa6d20f
submit only on last question
Drewsapple Feb 15, 2022
0e8e5d6
Different slider per question
Drewsapple Feb 15, 2022
51106c7
rebuild docs
Drewsapple Feb 15, 2022
f714ab3
graphs
bcfay Feb 15, 2022
9525f86
README
mvilaa Feb 16, 2022
c69ccac
Add technical achievements
Drewsapple Feb 16, 2022
dcb9bc3
Update README.md
bcfay Feb 16, 2022
a0caf4d
Update README.md
bcfay Feb 16, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
root: true,
extends: ['eslint:recommended', 'prettier'],
plugins: ['svelte3'],
overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }],
parserOptions: {
sourceType: 'module',
ecmaVersion: 2020
},
env: {
browser: true,
es2017: true,
node: true
}
};
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example
.Rproj.user
5 changes: 5 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/a3-Experiment.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100
}
Binary file added BarGraph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added BarsWithLine.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added R/.RData
Binary file not shown.
183 changes: 183 additions & 0 deletions R/.Rhistory
Original file line number Diff line number Diff line change
@@ -0,0 +1,183 @@
knitr::opts_chunk$set(echo = TRUE)
knitr::opts_chunk$set(echo = TRUE)
summary(cars)
plot(pressure)
knitr::opts_chunk$set(echo = TRUE)
data <- read.csv2('TestingData.csv')
data <- read.csv2('TestingData.csv')
print(data)
data <- read.csv('TestingData.csv')
print(data)
ggplot(mtcars, aes(mpg, factor(cyl))) +
geom_point() +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 2)
ggplot(data, aes(mpg, factor(cyl))) +
geom_point() +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 2)
install.packages("ggplot2")
library("ggplot2")
ggplot(data, aes(mpg, factor(cyl))) +
geom_point() +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 2)
library("ggplot2")
ggplot(data, aes(mpg, factor(Accuracy))) +
geom_point() +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 2)
library("ggplot2")
ggplot(data, aes(Accuracy, factor(cyl))) +
geom_point() +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 2)
library("ggplot2")
ggplot(data, aes(Accuracy, factor(Category))) +
geom_point() +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 2)
library("ggplot2")
ggplot(data, aes(Accuracy, factor(Category))) +
geom_point() +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 2)
data <- read.csv('TestingData.csv')
print(data)
library("ggplot2")
ggplot(data, aes(Accuracy, factor(Category))) +
geom_point() +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 2)
library("ggplot2")
ggplot(data, aes(Accuracy, factor(Category))) +
geom_point(aes(size = 3)) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 2)
library("ggplot2")
ggplot(data, aes(Accuracy, factor(Category))) +
geom_point(aes(size = 2)) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1)
library("ggplot2")
ggplot(data, aes(Accuracy, factor(Category))) +
geom_point(aes(size = 2)) +
stat_summary(fun.data = "95_cl_boot", colour = "red", size = 1)
library("ggplot2")
ggplot(data, aes(Accuracy, factor(Category))) +
geom_point(aes(size = 2)) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1)
library("ggplot2")
ggplot(data, aes(Accuracy, factor(Category))) +
geom_point(aes(size = 0)) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1)
library("ggplot2")
ggplot(data, aes(Accuracy, factor(Category))) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1)
library("ggplot2")
p <- ggplot(data, aes(Accuracy, factor(Category))) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1)
plotly:ggplot(p)
library("ggplot2")
p <- ggplot(data, aes(Accuracy, factor(Category))) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1)
plotly::ggplot(p)
library("ggplot2")
library("plotly")
> install.packages("plotly")
install.packages("plotly")
library("ggplot2")
library("plotly")
p <- ggplot(data, aes(Accuracy, factor(Category))) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1)
plotly::ggplot(p)
library("ggplot2")
library("plotly")
p <- ggplot(data, aes(Accuracy, factor(Category))) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1)
plotly::ggplot(p)
library("ggplot2")
library("plotly")
ggplot(data, aes(Accuracy, factor(Category))) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1)
library("ggplot2")
library("plotly")
ggplot(data, aes(Accuracy, factor(Category))) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1)
+ scale_x_continuous(expand = c(0, 0), limits = c(0, 7)) +
scale_y_continuous(expand = c(0, 0), limits = c(0, 7))
library("ggplot2")
library("plotly")
ggplot(data, aes(Accuracy, factor(Category))) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1) +
scale_x_continuous(expand = c(0, 0), limits = c(0, 7)) +
scale_y_continuous(expand = c(0, 0), limits = c(0, 7))
library("ggplot2")
library("plotly")
ggplot(data, aes(Accuracy, factor(Category))) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1) +
scale_x_continuous(expand = c(0, 0), limits = c(0, 7)) +
scale_y_continuous(expand = c(0, 0), limits = c(0, 7))
library("ggplot2")
library("plotly")
ggplot(data, aes(Accuracy, factor(Category))) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1) +
scale_x_continuous(expand = c(0, 0), limits = c(0, 7)) +
scale_y_continuous(expand = d(0, 0), limits = d(0, 7))
library("ggplot2")
library("plotly")
ggplot(data, aes(Accuracy, factor(Category))) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1) +
scale_x_continuous(expand = c(0, 0), limits = c(0, 7)) +
scale_y_continuous(expand = c(0, 0), limits = c(0, 7))
library("ggplot2")
library("plotly")
ggplot(data, aes(Accuracy, factor(Category))) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1)
library("ggplot2")
library("plotly")
ggplot(data, aes(Accuracy, factor(Category))) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1) +
scale_x_continuous(expand = c(0, 0), limits = c(0, 7))
library("ggplot2")
library("plotly")
ggplot(data, aes(Accuracy, factor(Category))) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1) +
scale_x_continuous(expand = c(0, 0), limits = c(0, 3))
knitr::opts_chunk$set(echo = TRUE)
data <- read.csv('GraphingData.csv')
data <- read.csv('GraphingData.csv')
data <- read.csv('GraphingData.csv')
data <- read.csv('GraphingData.csv')
knitr::opts_chunk$set(echo = TRUE)
data <- read.csv('GraphingData.csv')
data <- read.csv('GraphingData.csv')
print(data)
library("ggplot2")
library("plotly")
ggplot(data, aes(Accuracy, factor(Category))) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1) +
scale_x_continuous(expand = c(0, 0), limits = c(0, 3))
library("ggplot2")
library("plotly")
ggplot(data, aes(Accuracy, factor(Category))) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1) +
scale_x_continuous(expand = c(0, 0), limits = c(0, 3)) +
theme(axis.text.y=element_blank(),)
library("ggplot2")
library("plotly")
ggplot(data, aes(Accuracy, factor(Category))) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1) +
scale_x_continuous(expand = c(0, 0), limits = c(0, 3)) +
theme(y = element_blank(),)
library("ggplot2")
library("plotly")
ggplot(data, aes(Accuracy, Graph type) +
library("ggplot2")
library("plotly")
ggplot(data, aes(Accuracy, factor(Category))) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1) +
scale_x_continuous(expand = c(0, 0), limits = c(0, 3)) +
theme(x = axis.text.yelement_blank(),)
library("ggplot2")
library("plotly")
ggplot(data, aes(Accuracy, factor(Category))) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1) +
scale_x_continuous(expand = c(0, 0), limits = c(0, 3)) +
theme()
library("ggplot2")
library("plotly")
ggplot(data, aes(Accuracy, factor(Category))) +
stat_summary(fun.data = "mean_cl_boot", colour = "red", size = 1) +
scale_x_continuous(expand = c(0, 0), limits = c(0, 3)) +
theme(axis.title.y=element_blank(),)
Binary file added R/000010.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading