官术网_书友最值得收藏!

Getting help in R

Before we go further, it would serve us well to have a brief section detailing how to get help in R. Most R tutorials leave this for one of the last sections—if it is even included at all! In my own personal experience, though, getting help is going to be one of the first things you will want to do as you add more bricks to your R knowledge castle. Learning R doesn't have to be difficult; just take it slowly, ask questions, and get help early. Go you!

It is easy to get help with R right at the console. Running the help.start() function at the prompt will start a manual browser. From here, you can do anything from going over the basics of R to reading the nitty-gritty details on how R works internally.

You can get help on a particular function in R if you know its name, by supplying that name as an argument to the help function. For example, let's say you want to know more about the gsub() function that I sprang on you before. Running the following code:

  > help("gsub")
  > # or simply
  > ?gsub

will display a manual page documenting what the function is, how to use it, and examples of its usage.

This rapid accessibility to documentation means that I'm never hopelessly lost when I encounter a function which I haven't seen before. The downside to this extraordinarily convenient help mechanism is that I rarely bother to remember the order of arguments, since looking them up is just seconds away.

Occasionally, you won't quite remember the exact name of the function you're looking for, but you'll have an idea about what the name should be. For this, you can use the help.search() function.

  > help.search("chisquare")
  > # or simply
  > ??chisquare

For tougher, more semantic queries, nothing beats a good old fashioned web search engine. If you don't get relevant results the first time, try adding the term programming or statistics in there for good measure.

主站蜘蛛池模板: 揭西县| 廊坊市| 交城县| 鄂州市| 泰宁县| 莱州市| 盘山县| 沈丘县| 宁陵县| 洪洞县| 安徽省| 金秀| 利川市| 阿克苏市| 长寿区| 呼和浩特市| 五寨县| 南雄市| 兰坪| 南靖县| 正安县| 河西区| 天台县| 潮州市| 会同县| 甘肃省| 海林市| 上栗县| 额济纳旗| 惠安县| 竹溪县| 宝兴县| 南江县| 江安县| 大竹县| 日照市| 周口市| 逊克县| 绥中县| 鄂托克旗| 吉安县|