My first study

Introduction

motor learning

Conception

“A set of processes associated with practice or experience leading to relatively permanent changes in the capability for movement.” — Schmidt & Lee (2011), Motor Control and Learning

Different field

  • sport
  • medicine
  • patient
  • hospital
  • ……

I want some text in the left column

And a pciture in the right one

Results1

Results2

These results are important!

Disccusion

My blood brother is an immigrant, a beautiful immigrant 1

Code

x = c(1:20)
y = c(21:40)
plot(x,y)             

# Create a scatterplot with a smoothing function
ggplot(mtcars,
       aes(mpg, hp, size = gear)) +
  geom_point() 

Code3

mtcars %>%                               
  ggplot( aes(mpg, hp, size = gear)) +   
  geom_point() +                             
  geom_smooth(method = "lm")        

Shiny applications not supported in static R Markdown documents

Code3