Hola, este es un test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" VIM Configuration File | |
" Description: Optimized for C/C++ development, but useful also for other things. | |
" Author: Gerhard Gappmeier | |
" | |
" set UTF-8 encoding | |
set enc=utf-8 | |
set fenc=utf-8 | |
set termencoding=utf-8 | |
" disable vi compatibility (emulation of old bugs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
string::size_type pos = str.find_last_not_of("\n \t"); | |
if(pos != string::npos) | |
str = str.substr(0, pos+1); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*###################################################################### | |
Example 6 : MPI_Isend MPI_Irecv | |
Description: | |
Examples 5 and 6 demonstrate the difference between blocking | |
and non-blocking point-to-point communication. | |
Example 5: MPI_Send/MPI_Recv (blocking) | |
Example 6: MPI_Isend/MPI_Irecv (non-blocking) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: | |
label: | |
fig: 'Figura ' | |
tab: 'Tabla ' | |
eq: 'Ecuaci贸n ' | |
thm: 'Teorema ' | |
lem: 'Lema ' | |
cor: 'Corolario ' | |
prp: 'Proposici贸n ' | |
cnj: 'Conjetura ' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
=head1 NAME | |
rename - renames multiple files | |
=head1 SYNOPSIS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Cargar base de datos (requiere cargar tidyverse y readxl) | |
MK <- read_excel("NIELSEN01V2.xlsx") | |
# Escribir en la funci贸n set.seed() el c贸digo de cuatro d铆gitos asignado | |
# a tu grupo para obtener los datos que el grupo deber analizar | |
set.seed(CodigoGrupo) | |
p = 0.8 # Proporci贸n de la muestra | |
BaseGrupo <- MK %>% |
Nota: Varios de estos comandos pertenecen al Tidyverse, por lo que se asume que se ha instalado y cargado tidyverse
.
Comando | Descripci贸n | Ejemplo |
---|---|---|
install.packages() |
Instalar paquete (es necesario hacer s贸lo una vez) | install.packages("tidyverse") |
library() |
Cargar paquete | library(tidyverse) |
read_csv() |
Cargar datos en formato .csv (separado por comas) | read_csv("carpeta/misdatos.csv") |
read_excel() |
Cargar datos desde un archivo Excel (requiere cargar paquete readxl ) |
read_excel("misdatos.xlsx", sheet = "Hoja1") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\pagenumbering{gobble} | |
\usepackage[a4paper,hmargin={0mm,3mm},vmargin=5mm]{geometry} | |
\usepackage{tikz} | |
\begin{document} | |
\begin{tikzpicture}[scale=.5] | |
\foreach \x in {0,...,41} | |
\foreach \y in {0,...,57} | |
{ | |
\fill[gray!75] (\x,\y) circle (0.06cm); |
- Descargar e instalar R aqu铆: https://cran.rstudio.com/
- Windows: En la secci贸n "Download and Install R", hacer click en "Download R for Windows". Luego hacer click en "install R for the first time", se llegar谩 a un p谩gina con un link que indica "Download R 3.5.3 for Windows". Bajar ese archivo y ejecutar.
- MacOS: En la secci贸n "Download and Install R", hacer click en "Download R for (Mac) OS X". Luego descargar el archivo en el link "R-3.5.3.pkg" y ejecutar.
- Linux: En la secci贸n "Download and Install R", hacer click en "Download R for Linux". Seleccionar la carpeta con el nombre de su distribuci贸n.
- Descargar e instalar RStudio aqu铆: https://www.rstudio.com/products/rstudio/download/#download
- Windows: Bajo la secci贸n "Installers for Supported Platforms", descargar y ejecutar archivo en link "RStudio 1.1.463 - Windows Vista/7/8/10".
- MacOS: Bajo la secci贸n "Installers for Supported Platforms", Descargar y ejecutar archivo en link "RStudio
NewerOlder