similar to: follow up on teaching R to high school students

Displaying 20 results from an estimated 7000 matches similar to: "follow up on teaching R to high school students"

2012 Apr 18
6
introducing R to high school students
I participate peripherally on a listserve for middle- and high-school science teachers. Sometimes questions about graphing or data analysis come up. I never miss an opportunity to advocate for R. However, the teachers are often skeptical that their students would be able to issue commands or write a little code; they think it would be too difficult. Perhaps this stems from the Microsoft- and
2006 Apr 12
0
Workshop for Good - May 20/21, Washington DC, $400, Benefitting Public High School
Hey Everyone, I''ve been working on putting this project together for a few weeks now and it is finally coming together. The "Workshop for Good" will take place Saturday and Sunday May 20th - 21st. The cost is $400 for most people, but a discounted price of $200 for current high-school or undergraduate students (limit 5). All proceeds will benefit the Cesar Chavez Public
2009 Feb 16
1
TeleKaam - Voice Portal for Students and Parents
Hello All We have started a voice portal for Parents and Students. They can listen Grades, Attendance status and other relevant information over *phone*. Please read features below and to listen Demo IVR call at *00 92 42 8315427. *Initially we are deploying it for a School and planning to spread it for Colleges and Universities. *Your comments and feedback are valuable to us.* *TeleKaam
2017 Jul 05
0
Svyglm Error
hi, i am not hitting an error when i copy and paste your code into a fresh console. maybe compare your sessionInfo() to mine? > sessionInfo() R version 3.4.1 (2017-06-30) Platform: x86_64-w64-mingw32/x64 (64-bit) Running under: Windows Server 2008 R2 x64 (build 7601) Service Pack 1 Matrix products: default locale: [1] LC_COLLATE=English_United States.1252
2017 Jul 05
2
Svyglm Error
Greetings, I am revisiting code from several different files I have saved from the past and all used to run flawlessly; now when I run any of the svyglm related functions, I am coming up with an error: Error in model.frame.default(formula = F3ATTAINB ~ F1PARED, data = data, : the ... list does not contain 4 elements The following is a minimal reproducible example: library(RCurl)
2005 Dec 30
6
Rails in High School Curriculum?
Hi folks, I''m working with a local high school in the Portland, OR area on the subject of computer science curriculum. We are thinking of introducing a class in web development and I think Rails would be a perfect vehicle. I''ve done some searching on the web but haven''t found any suggestion of HS curriculum for Rails. Any pointers or suggestions? Thanks, ---
2011 Aug 11
0
anyone who is not high, in my empty live years-he ShiYuKun,
Only I didn't laugh The teacher often in class education everyone said, when seeing other defects and unfortunately, wholesalers:www.smbuys.com 10 million don't laugh at. One day, the little brown told the teacher say: "today have a campus a child fell into the puddle, everyone laugh, only I didn't laugh" "you do it right." teacher, "who praised fell into the
2010 Mar 10
1
trouble calculating rates--sometimes the denominator is missing
Every day I get a csv file containing the names of the 64 schools in our county, the number of students sent home ill, and the number of students absent (plus lots of other variables). The file is cumulative since fall of 2009. It is in "long" format: one line per school per day. Each line is also supposed to contain the total number of students enrolled in the school. That number
2005 Jul 09
2
A shared space between students and their teacher !!!
Hi all, Last week I implemented samba a sa file server and domain controller for more than 150 computers (Win 2000 and XP). Everything is working just fine. However, computer science faculty wanted a share for each course in which students can upload their homework once done and teacher download them for correction. Yet, students can have the right to write on that share but not delete the work
2010 Aug 11
0
HPDC 2011 - Call for Workshops
HPDC 2011 - Call for Workshops http://www.hpdc.org/2011/ The ACM Symposium on High Performance Distributed Computing (HPDC) conference organizers invite proposals for Workshops to be held with HPDC in San Jose, California in June 2011. Workshops will run on June 8, preceding the main conference sessions June 9-11. HPDC 2011 is the 20th anniversary of HPDC, a preeminent conference in high
2010 Aug 11
0
HPDC 2011 - Call for Workshops
HPDC 2011 - Call for Workshops http://www.hpdc.org/2011/ The ACM Symposium on High Performance Distributed Computing (HPDC) conference organizers invite proposals for Workshops to be held with HPDC in San Jose, California in June 2011. Workshops will run on June 8, preceding the main conference sessions June 9-11. HPDC 2011 is the 20th anniversary of HPDC, a preeminent conference in high
2009 Jan 23
0
high values of my response variable get chopped off of lattice dotplots
I am trying the following lattice graphics code: > library(lattice) > attach(junk) > summary(junk) mean.barr variable value Min. : 3.50 item15 :15 Min. :0.0000 1st Qu.: 9.50 item14 :14 1st Qu.:0.0000 Median :11.00 item16 :14 Median :0.0000 Mean :11.64 item1 : 0 Mean :0.6744 3rd Qu.:16.00 item2 : 0 3rd Qu.:1.0000 Max. :20.00 item3 :
2009 May 26
1
Converting a list to a data frame or columns at the least
I have a column in which dates and times are specified thus m/d/yyyy HH:MM:SS Alas, some entries do not include the time and therefore are only m/d/yyyy so I used read.csv and specified that the relevant column should be read as is and it remained as a character variable. I then split the value on the space split.dt.time <-strsplit(teacher$Date.and.Time.of.Lesson," ") that gives me a
2018 May 01
0
How would I color points conditional on their value in a plot of a time series
The ts method for plot() is quirky. You can use the default method: plot(as.vector(time(ttt)), as.vector(ttt), type = "p", col=ifelse(ttt<8, "black", "red")) Bill Dunlap TIBCO Software wdunlap tibco.com On Tue, May 1, 2018 at 1:17 PM, Christopher W Ryan <cryan at binghamton.edu> wrote: > How would I color points conditional on their value in a plot
2018 May 01
0
How would I color points conditional on their value in a plot of a time series
You may also want to check this out: plot(ttt, type = "p") points(ttt, col = ifelse(ttt < 8, "black", "red")) Eivind K. Dovik Bergen, NO On Tue, 1 May 2018, Christopher W Ryan wrote: > Excellent! Worked like a charm. Thanks. > > --Chris Ryan > > On Tue, May 1, 2018 at 4:33 PM, William Dunlap <wdunlap at tibco.com> wrote: > >> The
2018 May 01
2
How would I color points conditional on their value in a plot of a time series
Excellent! Worked like a charm. Thanks. --Chris Ryan On Tue, May 1, 2018 at 4:33 PM, William Dunlap <wdunlap at tibco.com> wrote: > The ts method for plot() is quirky. You can use the default method: > > plot(as.vector(time(ttt)), as.vector(ttt), type = "p", col=ifelse(ttt<8, > "black", "red")) > > > Bill Dunlap > TIBCO Software
2011 Aug 30
3
having trouble extracting week from chron object
Running R 2.13.1 on Windows XP. I would like to get week of the year (1-52) for each date. library(chron) dts <- dates(c("02/27/92", "02/27/92", "01/14/92","02/28/92", "02/01/92")) dts dts.chron <- as.chron(dts) dts.chron class(dts.chron) # all of these component extractions work: months(dts.chron) weekdays(dts.chron) years(dts.chron)
2012 Jan 17
0
Rails for Beginners Course - Live Instructor, 8 spots left
Hi there, My startup, Matygo, is running our second live Rails for Beginners course starting next week. This course is for people who are new to Rails, or have yet to dive in, and want to get a head start getting up to speed. Registration Link: http://bit.ly/matygo-rails-beginners-jan-2012 Our classes are fully online but are quite interactive. This is how it works: 1. Weekly live group video
2018 May 01
2
How would I color points conditional on their value in a plot of a time series
How would I color points conditional on their value in a plot of a time series. Something like this: ## demonstration data ttt <- ts(rpois(12, lambda = 8), start = c(2000, 1), freq = 4) ttt plot(ttt, type = "p") ## doesn't work--all points the same color plot(ttt, type = "p", col = ifelse(ttt < 8, "black", "red")) ## also doesn't work--all
2015 Jul 13
2
Crear datos aleatorios con restriciones
Hola, Esta pregunta la hice en stackoverflow <http://stackoverflow.com/questions/31137940/randomly-assign-teachers-to-classrooms-imposing-restrictions/31143808#31143808>pero nadie pudo contestarla. 1. Quiero generar N escuelas, con G grados y C divisiones. 2. Quiero asignar cada uno de T maestros a 2 divisiones en un grado y escuela Si tengo C=4 divisiones, puedo lograr lo que quiero con