Resting-State Analysis Part IV: Generating a Seed Region for Resting-State Analysis

Part of the resting-state pipeline includes warping each individual anatomical image into a standardized space, so that results can be compared across subjects. This also means that we can place a seed voxel or seed region into one location of the brain, and it will be roughly in the same spot for every subject in our analysis.

To do this, we will focus on one of the core components of the so-called "resting-state network," which is a reliable pattern of connectivity observed when subjects are at rest. Several studies have revealed patterns of correlative activity between the ventromedial prefrontal cortex (vmPFC) and retrosplenial cortex, which is the network we will be focusing on for this tutorial series; our aim will be to compare correlations between these nodes across persons with autism and a control group without autism.

First, however, we will need to create and place the seed region appropriately. We can place a seed voxel in the vmPFC using the XYZ coordinates 0, -50, -5 (similar to MNI coordinates of 0, +50, -5), and a correlation coefficient will be estimated for every other voxel in the brain. The resulting correlation maps will be created for each subject, and then collapsed across groups and statistically compared against each other.

The procedure for generating an ROI is exactly the same as what was done in a previous post about 3dUndump; we simply put the coordinates into a text file, and tell 3dUndump how large a sphere we want to create around those coordinates.


echo "0, -50, -5" > tmp.txt
3dUndump -prefix vmPFC -master errts.0050783+tlrc -srad 5 -xyz tmp.txt


This will then create a sphere with a 5mm radius around those coordinates, and information about that time series can then be extracted and correlated with other time series in every other voxel in the brain.



Resting State Analysis, Part III: Automating Your Analysis

Once you've set up a resting-state analysis script, either through uber_subject.py or following example #9 in the afni_proc.py documentation, I highly recommend that you set up some sort of higher-level script to automate running that script in each subject's directory. This is especially useful in the dataset we are using, since each individual analysis doesn't necessarily take that long, but we have a large number of subjects.

To begin, navigate to the downloaded KKI directory and use the following command to list each directory without trailing slashes:

ls -d */ | cut -f1 -d'/' > subjList.txt

You can then redirect this output to a text file, which can then be later edited at your leisure; in the above example, I used a redirect command to place all of the directories in a file called subjList.txt.

A for loop can then be used to do the analysis for each subject. (You can use any shell you want, but in this example I will use the t-shell.) Simply use the output of the text file as a variable, then use the for loop to execute the analysis for each subject, e.g.:

setenv subject `cat subjList.txt`
foreach subj ($subject)
cp RSproc.sh $subj/session_1
cd $subj/session_1
tcsh RSproc.sh $subj
cd ../..
end

The RSproc.sh script, generated from the uber_subject.py interface used in the last tutorial, can be found here. Note that I use a motion cutoff threshold of 0.3mm, which is slightly different from the standard 0.2mm cutoff; feel free to alter this if you like.

This should take care of all of your analyses while you go do something else, such as reading a book or shopping for tupperware and nosehair trimmers.* Of course, you will want to examine the output of your commands for any errors, but this menial task can usually be designated to one of your undergraduate RAs slated for resting-state data summoning immolation.




*Or maybe that's just me.

Resting-State Functional Connectivity Analysis, Part II: Setting Up Your Analysis

Once you have downloaded the KKI dataset discussed in the last resting-state post, you have most of what you need, sacrificial undergraduate RA notwithstanding. Also, as I mentioned, we will be using AFNI for this, specifically AFNI's uber_subject.py script which includes an option for preprocessing and analyzing resting-state data.

First, type uber_subject.py from your terminal to open up the GUI (rhymes with "whey"), and select the resting-state option from the preprocessing selections. This will automatically fill in a series of preprocessing steps which our AFNI overlords, in their wisdom, have decided is best for resting-state analyses. Of course, you can change this, but that would be an unbelievably stupid decision, on par with doing something like asking out your girlfriend's sister.

Notice that with resting-state experiments, we avoid several of the annoying, persnickety details endemic to typical FMRI experiments, such as having to actually design an experiment. You simply place the subject inside the scanner, set the scanner to 350 degrees, and leave it for ten minutes. When you come back, you will have a slightly charred piece of carbon that used to be a human being. After framing someone else, such as your FMRI technician, you should then realize that you are simply not cut out for actually carrying out a resting-state scan, and download someone else's data instead from the Internet like I recommended in the first place.

Notice that much of the preprocessing and setting up the design matrix is the similar to usual FMRI analyses. However, there is an important difference in the design matrix setup, because you do not have any tasks or events to model. Instead, the only things you need to model are potential sources of noise, which may include heart rate or respiration data, if you have it, and always motion data, since this can be an insidious confound in any FMRI analysis, but particularly for resting-state analyses.

The upshot of all this is that, whereas in a traditional FMRI analysis AFNI saves the beta estimates and contrasts to a statistics dataset and everything else that wasn't modeled into an error or residual dataset (usually labelled "errts+orig"), in resting-state analyses we are interested in everything that wasn't explicitly modeled - in other words, we will want to focus on what gets output to the errts+orig dataset, since that will contain the timecourses of voxel activity that we are interested in. You can then place ROIs or other seed regions within that dataset, and generate correlation maps from those seed regions.



In the next chapter of the series, we will look more closely at converting these correlation values into z-maps for comparison across groups, as well as where to find more undergraduate RAs if the ones who were working in your lab have already been burnt as offerings to the FMRI gods.

Introduction to Resting-State Functional Connectivity Analysis: You Can Do It! (Maybe)

A while ago I promised to provide a series of tutorials on resting-state connectivity, and I'm happy to announce the first part after a brief delay of, give or take, fourteen months. But in my defense, I wanted to wait until I had everything well prepared and ready to go, by which I mean until I had a new suit, which, obviously, is a critical part of the education process.

For this series, in order to follow along I recommend downloading resting-state data from the ABIDE website, which collects resting-state data from autistic subjects and controls. The end result will be a simple comparison of resting-state networks across both populations, which, although the interpretation of such results has a large farrago of its own issues, should provide a solid platform from which to launch your own resting-state analyses. We will be using AFNI for this demonstration, although in the future I may include an identical analysis using FSL.

First, you need to jump through the usual administrative hoops in order to download the dataset. This involves a simple series of steps, such as registering as a member, filling out a form with your username and password, and immolating a virginal undergraduate RA. The resulting aroma will summon the resting-state data, which can then be downloaded to your computer.

First, register at the NITRC website: http://www.nitrc.org/account/register.php
Two, request access from the following link: http://fcon_1000.projects.nitrc.org/indi/req_access.html
Last, go to the ABIDE website and download a resting-state dataset (I am using data from the Kennedy Krieger Institute): http://fcon_1000.projects.nitrc.org/indi/abide/



As for finding and sacrificing the virginal undergraduate RA, you're on your own.

How to Write Article Reviews (Kickbacks are Involved)

There comes a time when a graduate student is selected for the dubious honor of reviewing an article. This is the "peer-review process," where your academic equals, also known as "peers," or, less commonly, "fellow nerds," pass "judgment" on an "article" to determine if it is "suitable" for "publication." Of course, actually recommending an article for publication rarely "happens," and it is much more common for an article to be "rejected," similar to what happens every other area in your life, such as "work" or "dating."

Clearly, then, publishing articles is a formidable process, with failure all but certain. Because of this, instead of merely relying on the quality and scientific integrity of their work to make it publication-worthy, scientists sometimes resort to other tactics, by which I mean "bribes."

By bribes, I do not mean simply asking for money in exchange for recommending an article for publication. That would be dishonest. And also be careful not to confuse bribes with "extortion," which is also known in certain circles as "publication fees."

Instead, the transfer of money between article authors and reviewers is much more subtle. I should add that if you feel any qualms about asking for bribes, keep in mind that this entire process is implied and condoned, similar to insider trading, cheating at golf, or using your finger to scrape the last bits of Nutella from the bottom of the jar. Everybody does it.

In order to request a bribe through your journal review, however, you need to exercise the utmost caution and tact, carefully placing references to your account number, routing number, and the amount of money that you want, that will only be detected by those who are "in the know." Use the following template for your own reviews.


Reviewer #1: This paper is an interesting, timely, important study on the effects of the default poop network. However, before I recommend it for publication, I have some major reservations, which in no way include asking for bribes.

Major issues:
1) The name of the second author, Betsy Honkswiggle, is identical to the name of a girl that I dated during my sophomore year in college, and I still have particularly bad memories about our breakup, which may or may not have involved a nasty custody struggle over a pet iguana. The negative associations are affecting my ability to objectively review this paper, and I recommend either immediate removal of the author from the paper, or that the author change her name to something more palatable, such as Harriet Beecher Stowe, or Pamela Anderson.
2) In figure 3557285492, the colors used to depict different effects could be changed to be more pleasing to the eye. Right now they are in blue and green, which is somewhat drab; try a different set of colors, such as fuschia or hot lemon.

Minor issues:
1) I realize this may not entirely be the authors' fault, but I have been having some serious itching for the past couple of weeks, which I, for decorum purposes, won't go into more detail about where it is located. I've tried everything, from Tucks to half-and-half to primal scream therapy, but nothing seems to work. Do the authors have any recommendations for how to deal with this? Thanks!
2) When discussing the default poop network, please cite Dr. Will Brown's seminal 1994 paper. 
3) For that matter, please cite the other following papers, which are related to your article. Of course, you don't need to cite all of these, but if you didn't, it'd be a shame if somethin' were to, you know, happen to this nice little article of yours, capisci?
-Fensterwhacker et al, 2011
-Fensterwhacker & Brown, 2009
-Fensterwhacker et al, in press
-Fensterwhacker et al, submitted
-Fensterwhacker & Honkswiggle, in prep
-Fensterwhacker, Bickswatter, & LeQuint, I swear we're very seriously considering doing this study
4) The fact that my name is on all of the preceding citations is purely a coincidence.
5) Also, if you believe that, you are, with all due respect, dumber than tinfoil.
6) On page 12, line 20, "your" should be "you're."
7) On page 16, the authors report an effect that has a cluster size of 348 voxels. This seems a little off to me; for some reason, I think this should be something more like, let's say, 017000371. This must be true, because I am a reviewer.

Once you have addressed all of these concerns, I may allow you to do a second round of reviews, after which I may go and do something completely nuts-o, such as recommending a reject and resubmit.


God bless you all,
Except for the atheists,




Dwayne "Five Thousand Bucks" Fensterwhacker III, Esq.

A Computational Model of Arbitration between Model-Based and Model-Free Learning (Featuring Django Unchained!)

Decision-making has fascinated both neuroscientists and economists for decades; and in particular, what makes this such an intriguing topic isn't when people are making good decisions, but when they are screwing up in major ways. Although making terrible decisions doesn't necessarily bar you from having success - just look at our past six or seven presidents - alleviating terrible decisions can sometimes make your life easier, especially when it comes to avoiding decisions that could be bad for you, such as licking a steak knife.

A recent Neuron paper by Lee, Shimojo, and O'Doherty examined how the brain switches between relying on using habitual actions to make decisions, versus generating a cognitive model of what decisions might be associated with which outcomes, and making a decision based on your prediction about what should be most optimal, similar to making a decision-tree or flowchart outlining all the different possibilities associated with each action. These decision-making strategies are referred to as model-free and model-based decision systems, respectively; and reliance on only one system, especially in a context where that system might be inappropriate, would lead to inefficiencies and sometimes disastrous consequences, such as asking out your girlfriend's sister. O'Doherty, who seems to churn out high-impact journals with the effortlessness of a Pez Dispenser, has been working on these and related problems for a while; and this most recent publication, to me, represents an important step forward in computational modeling and how such decision-making processes are reified in the brain.

Before discussing the paper, let me clarify a couple of important distinctions about the word "errors," particularly since one of the layers of the model discussed in the paper calculates different kinds of error. When computational modelers talk about errors, they can come in multiple forms. The most common description of an error, however, is some sort of discrepancy between what an organism is trying to do, or what an individual is expecting, and what that organism actually does or actually receives. Errors of commission, in particular, have been extensively studied, especially in popular decision-making and reaction-time paradigms such as the Stroop task, which is simply screwing up or making an unintended mistake; but recently other forms of error have been defined, such as reward prediction error, which calculates the discrepancy between what was expected, and what was actually received. The authors contrast this reward prediction error with a related concept called state prediction error, which is the discrepancy between an internal model of the environment and the actual state that someone is in. So, actions that are appropriate or likely to be rewarded in one state, may no longer be valid once the state is detected to have shifted or somehow changed.

While this may sound like so much jargon and namby-pampy scientific argot, state prediction errors and reward prediction errors are actually all around us, if we have eyes to see. To take one example, near the end of Django Unchained, our protagonist, Django, has killed all of Calvin Candie's henchmen in a final climactic shootout in the CandyLand foyer. Stephen, thinking that Django has spent all six revolver rounds in the shootout - including a particularly sadistic dismemberment of Billy Crash - believes that he still has some options left open for dealing with Django, such as continuing to talk trash. However, when Django reveals that he has a second revolver, Stephen's internal model of his environment needs to update to take this new piece of information into account; actions that would have been plausible under the previous state he believed himself to be in are no longer viable.

A reward prediction error, on the other hand, can be observed in the second half of the scene, where Django lights the dynamite to demolish the CandyLand mansion. After walking some distance away from the manse, Django turns around to look at the explosion; clearly, he predicts the house to explode in an enormous fireball, and also predicts it to occur at a certain time. If the dynamite failed to go off, or if it went off far too early or too late, would lead to a prediction error. This distinction between the binary occurrence/non-occurrence of an event, as well as its temporal aspect, has been detailed in a recent computational model of prediction and decision-making behavior by Alexander & Brown (2011), and also illustrates how a movie such as Django Unchained can not only provide wholesome entertainment for the whole family, but also serve as a teaching tool for learning models.


This brings us to the present paper, which attempted to locate where in the brain such an arbitration process is done in order to select a model-based or model-free decision system. A model-free system, as described above, takes the lesser amount of cognitive effort and control, since using habitual or "cached" behaviors to guide decisions is relatively quick and automatic; model-based systems, on the other hand, require more cognitive control and mapping out prospective outcomes associated with each decision, but can be more useful than reflexive behaviors when more reflection is appropriate.

The task required participants to make either a left or right button press, which would make a new icon appear on the screen, and after a few button presses, a coin would appear. However, the coin was only rewarding in certain circumstances; in one condition, or "state," only certain colors of coins would be accepted and turned into rewards, while in the other condition, any type of coin would be rewarding. This was designed to favor either model-free or model-based control in certain situations, and also to compare how an arbitration model would correlate with behavior that either is more flexible under model-based conditions, or more fixed under model-free conditions, using a dynamical threshold to shift behavior from model-based to model-free systems over time. The arbitration model also computes the reliability of the model-based and model-free systems to determine which should be implemented, which is affected by prediction errors on previous trials.

Figure 2 from Lee et al showing how prediction errors are computed and then used to calculate the reliability of either a model-based or model-free system, which in turn affects the probability of implementing either system.

The authors then regressed the computational signals against the FMRI data, in order to see where such computational signals would load onto observed brain activity during trials requiring either more or less model-based or model-free strategies. The reliability signals from the model-free and model-based systems were found to load on the inferior lateral PFC (ilPFC) and right frontopolar cortex (FPC), suggesting that these two cortical regions might be involved in the arbitration process to decide which system to implement, with the more reliable system being weighted more.

Figure 4, ibid, with panel A depicting orthogonal reliability signals for both model-based and model-free systems in bilateral ilPFC. Panel B shows a region of rostral anterior cingulate cortex associated with the difference in reliability between the two systems, and both the ilPFC and right FPC correlated with the highest reliability index for a particular trial for whichever system was implemented during that trial.

Next, a psychophysiological interaction (PPI) analysis was conducted to see whether signals in specific cortical or subcortical regions modulated the activity of model-free or model-based signals, which revealed that when the probability of a model-free state was high, there was a corresponding negative correlation between both the ilPFC and right FPC and regions of the putamen also observed to encode model-free signals; significantly, no effects were found for the reverse condition when the probability of model-based activity was high, suggesting that the arbitrator functions primarily by affecting the model-free system.

In total, these results suggest that reliability signals for different decision systems are modulated by activity in the frontocortical regions, and that signals for the model-based and model-free systems themselves are encoded by several different cortical regions, including the orbital PFC for model-based system activity, and supplementary motor area and dorsolateral PFC for model-free activity. In addition, the ventromedial PFC appears to encode a weighted signal of both model-based and model-free signals, tying together how subcortical and value-computing structures may influence the decision to either implement a model-based or model-free system, incorporating reliability information from frontopolar regions about which system should be used. Which, on the face of it, can be particularly useful when dealing with revolver-wielding, dynamite-planting psychopaths.


Link to paper

Saving Cluster-Corrected Images in SPM

Once you've loaded up a contrast in SPM and thresholded it at a particular correction threshold, such as cluster corrected or FWE corrected, you can then simply save that image into a .hdr/.img file for use in another viewer, such as MRIcron. Just push the save button in the results window, and there you have it. This image can also be used for other purposes, such as doing an ROI analysis within only those voxels passing a corrected threshold for a given contrast.

Cluster-corrected image in the SPM interface

Same image, but saved out into .hdr/.img format and viewed in MRIcron.

In case it isn't clear how to do this from the above, I've also made an instructional video about how to do it, which - if you can believe it - was done in only one take. I have my little victories.



Q & A Session with Andy's Brain Blog

Several of you have written in, and, after just enough time to both come up with well-reasoned answers and to slightly irritate you, I have responded. To be honest, not that many people write me - as in, maybe one or two - so I've also included a couple of so-called "made-up" questions to flesh out the direction that the blog is heading, as well as "hardball" questions, such as what my stance is on the current political situation in Ukraine, or whether eating all that Nutella has permanently changed the color of my urine.

Q: Why haven't you responded to my requests to join a Google Discussion?
A: To be honest, I thought that some of those things were spam. As you may have guessed, I'm not that technologically savvy with these kinds of things. However, I will do my best to respond to you as soon as possible.

Q: Where have all the Google Ads gone? What will I click on now?
A: As much as we all loved the Google Ads, I think they're gone for good this time. I think the turning point was when I saw an ad on my own site about finding attractive singles in my area. I mean, why should I need any help finding attractive singles in my area? The very idea is absurd! Ask anyone!

In any event, I found the ads distracting from the real purpose of this blog, which is to educate, edify, and ennoble. Also, incidentally, I wasn't making diddly-squat in the way of ad revenue.

Q: A while ago you promised to make videos on resting-state functional connectivity, DTI analysis, and, possibly, how to dress professionally. Where are they?
A: I'll be upfront with you - once I found out that making tutorials about those things took, like, effort, I tended to back down and procrastinate. But no more; I have my first post on resting state connectivity in the works, and it will be released one week from now, on February 26th. Subject to change, of course.

Q: Are we still in Q-and-A format?
A: Yes.

Q: What is the purpose of graduate school?
A: To seek the truth; to discover the good life; to use your knowledge and your profession to unite and harmonize what is both highest and lowest within you; to look to past examples of conduct for guidance and inspiration; to be as Odysseus, who, as Dante tells us, went forth to see the virtues and vices of men, and to study as Machiavelli, who snatched a few hours from each busy day to don regal clothing and hold court with ancients.

Hah! Just kidding, folks. The real purpose of graduate school is to wedge yourself deeper into the crevice of your specialization, until you are unable to see anything outside of your immediate surroundings; and, in the meantime, prepare yourself for a career of "making it," a perpetuum mobile existence filled with endless business and babbitry. The sooner you embark upon this path and embrace it, the less friction you will feel between it and the rest of your life, resulting in less discord and more satisfaction with yourself; which is the goal of any successful person.

Q: Why do you find the need to sermonize and pontificate so much?
A: Runs in the family, I think.

Q: What changes will there be to the blog in the future?
A: Right now I am trying to get higher-quality recording equipment from the educational school here at IU to make better videos. Also, there might be a shift in focus to more neuroanatomy and review of papers, especially ones that are relevant to my dissertation, i.e. the neuroscience of decision-making and computational modeling. We'll see how this works out, and what kind of response it gets. And I really do appreciate any feedback you can give me, and I would also like to thank those of you who have already given comments about what works, and about what could be improved. You are truly fantastic, and I am grateful for each and every one of you! Also, if you could send me some documentation proving that you are one of my dependents, for tax purposes (you know how those taxes are), that would be great.

Q: Thanks! I guess that's it for now.
A: That's not a question. 

The Will to Persevere, Induced by Deep Brain Stimulation

Scientists, and neuroscientists in particular, are an odd bunch, with complex, multifaceted personalities. on the one hand they can be reclusive, socially awkward, and pretentious; but, in their defense, they make an honest effort to try and make up for these defects by being completely nuts.

For example, although most neuroscientists won't admit it, deep down, in their heart of hearts, somewhere in the left atrium, each and every one of feels a little twinge of excitement at the prospect of sticking electrodes somewhere in a person's brain and delivering electrical shocks. Seriously. Just ask any self-described neuroscience researcher what he would love to do most, and nine times out of ten he will say "Stick things inside someone's brain and inject enough electricity into it to light up a small amusement park." Only rarely will he give a more reasoned, more mature answer, such as "Purchase a motorcycle," or "Become an adult film star."

In any case, neuroscientists are usually prevented from acting out their sick fantasies by institutional review boards, or IRBs, which, from a neuroscientist's point of view, exist solely to be squeamish buzzkills and to put your experiments under review for a length of time equivalent to the gestation period of a yak. However, every once in a while there will be a case where an epileptic patient is undergoing a craniotomy, for example, or where a fellow neuroscientist is receiving extensive brain surgery after his latest motorcycle accident; and these cases, in addition to being like the Irish Sweepstakes for neuroscientists, can also yield valuable insights about how direct stimulation of cortical and subcortical areas can induce different physiological and cognitive states.

A recent example of this type of research appeared in a paper in the journal Neuron a couple of months ago, by Parvizi et al. Two epilepsy patients had deep-brain electrodes implanted in their brain, and the researchers were particularly interested in those electrodes located within the midcingulate region of the anterior cingulate cortex (ACC). After delivering small bursts of electricity to these electrodes, the patients reported higher levels of autonomic system activity, including increased heart rate and alertness, along with a feeling of foreboding but a concomitant feeling of resolve to overcome the intangible "challenge" that they felt. A follow-up resting-state analysis showed that both of these seed stimulation regions were hubs of a widespread cingulo-opercular network, similar to the typical coactivation of cingulate and insula responses observed in most studies examining the medial prefrontal cortex, and also involved in detecting emotional salience and sustaining goal-directed activity.

Figure 1 from Parvizi et al, showing the stimulation site in the midcingulate region for both patients, as well as more remote stimulation sites for comparison.


Figure 2 from Parvizi et al depicting a resting-state functional connectivity analysis using the midcingulate as a seed region.

The authors labeled these feelings of wanting to overcome a formidable challenge as the "will to persevere," a phrase I think will be variously interpreted, but which seems apt enough for the current paper. However, one concern that popped into my head while reading through the article (dons reviewer glasses, purses lips disapprovingly) was: Is it really a will to persevere, or just a general increase in autonomic nervous system arousal (i.e., the sympathetic branch)? The "will to persevere" reported here may be the patient's interpretation of his increased heart rate, which, given the circumstances of the experiment and the patient's undergoing surgery to treat his epilepsy, may reflect his desire for a successful outcome of the surgery. Placing the patient in a different environment or with different circumstances - say, locking him in a room with one of the facehuggers from the movie Alien - may lead to a reinterpretation of the same increased arousal as fear, instead of a general willingness to overcome the challenge that lays in front of him.

In any case, these results, coupled with the lack of emotional response to electrical charges delivered to control stimulation sites and sham stimulations, lends support to the theory that the midcingulate region plays some kind of role in motivation, and that stimluation to this region may have practical applications for disorders involving pathologically low amounts of motivation, such as major depression and senioritis; disorders which, I might add, I am fully qualified to treat with open-brain surgery and a homemade electrical stimulation kit consisting of copper wire and a couple of lemons. Just give me a call.


Link to paper (including video of interview with subject 1; scroll to bottom of page): http://www.sciencedirect.com/science/article/pii/S0896627313010301

Andy's Brain Blog: Valentine's Day Edition

For those who have been in academia for nearly their entire life, the stage at which one is nearly done with their graduate work, around the time they are in their late twenties or early thirties, is a good time to start thinking about dating.

Luckily, whereas our ancestors were all a bunch of stiff-necked prudes who knew next to nothing about amorous affairs, today all of our race's available knowledge about love and relationships has been synthesized and condensed into the minds of a very few select sages, by which I mean: Pick-Up Artists.

These people, out of their generosity, have decided to share their wisdom and insights through various books, TV shows, and websites, in order to make their disciples as happy and fulfilled as possible. The fact that their advice seems to constitute what more old-fashioned people would call "narcissistic," "anti-social," or "I'm pretty sure doing that would get you arrested in most countries," should not deter you from following their instructions. Neither should the fact that they tend to dress up as, say, meth addicts.

Famous Pick-Up Artists

In any case, it is clear that following the advice of these people is better than doing nothing. Under no circumstances should you assume that you, some loser dirtbag, knows better than they do.

Fortunately, after reading through their books and listening to their lectures, I've been able to boil down their ideas into a few main points. Simply follow these, and then sit back and wait for the babe stampede.


1. Be assertive. Girls like guys who are assertive, which, contrary to popular belief, doesn't mean just being confident about who you are and forthright about what you believe; instead, it means being brash enough and loud enough to the point where anyone else around you who wants to talk either has to talk louder than you are or talk directly at you, ensuring your control of the conversation and your immediate environment; a technique, incidentally, that has been perfected on several political talkshows.

The reason girls are attracted to this can be explained by the theory of evolution, which states that females, being insane, prefer to copulate with psychopathic jerks, because it's good for the survival of the species, somehow. (Actually, to be honest, I have no idea why this is the case, and using evolution to explain it always seems like kind of a cop-out; similar to using natural selection to explain why humans have formed such horrifyingly self-destructive activities such as war, or home-improvement projects.)

2. Be Charismatic. Girls like guys who are charismatic. Having charisma means being able to persuade and influence other people into doing things they would not otherwise do, such as dating you, or eating a used tissue. Having charisma also means being able to attract people by the sheer magnetism of your personality, as exemplified by the following famous historical figures:

What do each of these people have in common? That's right: They're all murderous sociopaths! Having a few screws loose is, unfortunately, often highly correlated with charisma. But then again, everybody likes a little spice in their relationship.

3. Be Witty. Girls like guys who are witty. Ideally, you should constantly be making remarks that reflect your sophistication and vast erudition cultivated over the years by reading poetry and great works of world literature, and possibly one or two neuroscience blogs. Eschew lowbrow, vulgar subjects and try to keep your witty remarks limited to more refined topics such as classical music, literature, and competitive eating.

Example: "Nietzsche's Übermensch is very much like Wagner's Siegfried, except that he knows Greek. Also, care to guess what my Chubby Bunny record is?"

4. Be Conspicuous. In order to be noticed, it helps to have some attribute that makes you stand out apart from the herd. It can be something as simple as donning garish clothing, sporting a new hairstyle, or developing a personality disorder. Be creative. I'm told that histrionic types are in style these days.

That's about it, and once you have all of these bases covered, success is all but guaranteed. Over time you may even find yourself in a relationship with this person you have managed to attract; and while it may be hard to determine whether you are, exactly, in a relationship, one or more of the following signs may mean that you are indeed in some kind of commitment:
  1. You find yourself celebrating a five-year wedding anniversary;
  2. You have just witnessed the birth of your third child with this person;
  3. You find you and your significant other frequently engaging in "committed relationship" activities such as eating together, sleeping together, and trimming each other's nose hairs.
On a more serious note, I wish you all have a wonderful Valentine's Day that isn't plagued by doubt, insecurity, and loneliness. Many people tend to hate on Valentine's Day, labeling it as a cynical marketing ploy by the nefarious Card Industry, the abominable Flower Industry, and Big Chocolate; however, this tends to obscure the fact that this holiday tends to occur on a typically dreary, cold, slushy day during which everyone is trying to drive to fancy restaurants, and that somehow the malefic Road Salting Union may be involved as well.

In any case, I hope that the preceding advice works, and if it doesn't, I even more sincerely hope that you don't come running after me with a machete. Remember that this is the distilled advice of literally half a dozen or so self-described experts and possible drug abusers - and they can't all be wrong, can they?