What about privacy ? :)

Sign by Danasoft - For Backgrounds and Layouts

mercoledì 17 aprile 2013

RADIOHEAD ON AIR

Vi segnalo questo evento che si terrà :


Sabato 20 aprile alle ore 21.00 
presso il Cecilia, Centro per la Creatività di Tito (PZ)

intitolato:
Radiohead on A.I.R.

scritto dalla mano di Pierluigi Argoneto e diretto dalla regista Vania Cauzillo, è  uno spettacolo interamente dedicato a uno dei gruppi più complessi e affascinanti del panorama musicale mondiale degli ultimi anni: i Radiohead.

   Colti, raffinati, geniali, i Radiohead riescono sempre a far parlare di sé, lavorando in un'ottica di ricerca musicale decisamente anticonformista.
   A raccontare la loro storia e la loro musica è un giovane speaker durante una trasmissione radiofonica. Gli aneddoti tratti dalla vita dei Radiohead, dai libri o dai film che hanno ispirato i testi delle loro canzoni, diventa così l'ingrediente principale di una narrazione a doppia elica, che intreccia la loro musica alla vita del giovane conduttore.
   I brani saranno eseguiti dal vio in forma acustica con arrangiamenti che vogliono mettere in risalto la bellezza melodica delle musiche della band e trascinando l'ascoltatore nei sogni futuristici di Thom Yorke.

Qui trovate un video promozionale.

   In occasione dell'evento è stato predisposto un concorso che permette di vincere biglietti di ingresso: la formula è semplice, basta indovinare 5 nomi di brani che verranno eseguiti durante lo spettacolo.
I dettagli potete trovarli qui: vinci Radiohead on Air

Fonte (L' albero)

martedì 16 aprile 2013

LATTICE package intro

This post is a sort of pro-memoria where I wrote down the main concepts of one chapter of the Murrel book reported in the bibliography, at the end of the post. The LATTICE package implements the Trellis graphic system, you can find information here.
It is based on the "grid system" of plotting (not on the "base system"). Anyway, it can be used without tackle any of the underlying grid concepts. In fact, it is also a self-contained system with a set of functions for:
  • producing complete plots;
  • controlling the appearance;
  • opening/closing devices.
Lattice functions produce an object of class "trellis", containing a descriprtion of the plot. The actual draw is performed by the print() function.

tpl <- xyplot(lat ~ long, data=quakes) # creates a trellis object
print(tpl) # draw it

Now it is possible to modify the trellis object through the update() method, which is an alternative to modifying the original R expression used to create the trellis object.

update(tplot, main="This is a Title\n(write what you prefer)") # insert a title

Note:
  • A subtle change: extra space introduced to allow room for adding the new main title.
  • this change is not retained: ion order to retain it you should assign to the object
tplot <- update(tplot, main="This is a Title\n(write what you prefer)") # insert a title


Different devices have different default settings (e.g.: PDF has different settings compared to PNG). The first time that a lattice output is produced the settings are initialized (type ?trellis.device() ).
The graphical appearance of lines type and colors, text fonts etc. are maintained for each device opened (more on next posts). Default settings of Trellis Graphics produced through Lattice are carefully selected in order to maximize the
readability based on principles of human perception.

Bibliography
Murrell. P., R Graphics, 2005 by Chapman and Hall/CRC ( Murrel book web page )