• 主页
  • 课程

    关于课程

    • 课程归档
    • 成为一名讲师
    • 讲师信息
    同等学历教学

    同等学历教学

    免费
    阅读更多
  • 特色
    • 展示
    • 关于我们
    • 问答
  • 事件
  • 个性化
  • 博客
  • 联系
  • 站点资源
    有任何问题吗?
    (00) 123 456 789
    weinfoadmin@weinformatics.cn
    注册登录
    恒诺新知
    • 主页
    • 课程

      关于课程

      • 课程归档
      • 成为一名讲师
      • 讲师信息
      同等学历教学

      同等学历教学

      免费
      阅读更多
    • 特色
      • 展示
      • 关于我们
      • 问答
    • 事件
    • 个性化
    • 博客
    • 联系
    • 站点资源

      未分类

      • 首页
      • 博客
      • 未分类
      • Jupyter数据科学分析环境-R python Julia

      Jupyter数据科学分析环境-R python Julia

      • 发布者 weinfoauthor
      • 分类 未分类
      • 日期 2020年3月31日
      • 评论 0评论

      为方便快速习惯环境和快速入门,可以通过以下的网址和用户名和密码进行学习和测试。

      网址:ssh登陆 jupyterhub:http://xyz.weinformatics.com:30016/hub/login?next=%2Fhub%2F

      你也可以登陆以下网址10s快速注册获取

      用户名和密码如下:注请大家随机选择,我们推荐用户使用ssh登陆或者申请自己的账号做分析

      
      恒诺新知用户名:mynewuser2 密码:1234506
      
      恒诺新知用户名:mynewuser3 密码:1523456
      
      恒诺新知用户名:mynewuser4 密码:123456
      
      恒诺新知用户名:mynewuser5 密码:123456
      
      恒诺新知用户名:mynewuser6 密码:1253456

      我们推荐使用该环境进行python的学习,以下安装seaborn进行绘图

      pip install -i https://pypi.tuna.tsinghua.edu.cn/simple seaborn
      Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
      Collecting seaborn
        Downloading https://pypi.tuna.tsinghua.edu.cn/packages/e7/f9/f0b53f88060247251bf481fa6ea62cd0d25bf1b11a87888e53ce5b7c8ad2/pytz-2019.3-py2.py3-none-any.whl (509 kB)
           |████████████████████████████████| 509 kB 45.8 MB/s eta 0:00:01
      Collecting cycler>=0.10
        Downloading https://pypi.tuna.tsinghua.edu.cn/packages/f7/d2/e07d3ebb2bd7af696440ce7e754c59dd546ffe1bbe732c8ab68b9c834e61/cycler-0.10.0-py2.py3-none-any.whl (6.5 kB)
      Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in /usr/local/lib/python3.8/dist-packages (from matplotlib>=2.1.2->seaborn) (2.4.6)
      Collecting kiwisolver>=1.0.1
        Downloading https://pypi.tuna.tsinghua.edu.cn/packages/36/ac/c8627c214954b18b197f137ee96bc99e1cc31913d80d7ad59fbab3b05945/kiwisolver-1.2.0-cp38-cp38-manylinux1_x86_64.whl (92 kB)
           |████████████████████████████████| 92 kB 167 kB/s  eta 0:00:01
      Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.8/dist-packages (from python-dateutil>=2.6.1->pandas>=0.22.0->seaborn) (1.14.0)
      Installing collected packages: numpy, pytz, pandas, scipy, cycler, kiwisolver, matplotlib, seaborn
        WARNING: The scripts f2py, f2py3 and f2py3.8 are installed in '/home/mynewuser1/.local/bin' which is not on PATH.
        Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
      Successfully installed cycler-0.10.0 kiwisolver-1.2.0 matplotlib-3.2.1 numpy-1.18.2 pandas-1.0.3 pytz-2019.3 scipy-1.4.1 seaborn-0.10.0
      Note: you may need to restart the kernel to use updated packages.

      安装完成后,提示我们需要重启内核

      然后就可以根据官方教程进行学习:http://seaborn.pydata.org/index.html

      import seaborn as sns
      import matplotlib.pyplot as plt
      sns.set(style="whitegrid")
      
      # Load the example diamonds dataset
      diamonds = sns.load_dataset("diamonds")
      
      # Draw a scatter plot while assigning point colors and sizes to different
      # variables in the dataset
      f, ax = plt.subplots(figsize=(6.5, 6.5))
      sns.despine(f, left=True, bottom=True)
      clarity_ranking = ["I1", "SI2", "SI1", "VS2", "VS1", "VVS2", "VVS1", "IF"]
      sns.scatterplot(x="carat", y="price",
                      hue="clarity", size="depth",
                      palette="ch:r=-.2,d=.3_r",
                      hue_order=clarity_ranking,
                      sizes=(1, 8), linewidth=0,
                      data=diamonds, ax=ax)

      python的扩展包是python的十倍,从网上总能找到解决你的问题满足你需求的。

      请关注“恒诺新知”微信公众号,感谢“R语言“,”数据那些事儿“,”老俊俊的生信笔记“,”冷🈚️思“,“珞珈R”,“生信星球”的支持!

      • 分享:
      weinfoauthor
      weinfoauthor

      1233

      上一篇文章

      继续了解ChIP-seq
      2020年3月31日

      下一篇文章

      ChIP-seq的实验对照与偏差来源
      2020年3月31日

      你可能也喜欢

      2-1675088548
      lncRNA和miRNA生信分析系列讲座免费视频课和课件资源包,干货满满
      30 1月, 2023
      9-1675131201
      如何快速批量修改 Git 提交记录中的用户信息
      26 1月, 2023
      8-1678501786
      肿瘤细胞通过改变CD8+ T细胞中的丙酮酸利用和琥珀酸信号来调控抗肿瘤免疫应答。
      7 12月, 2022

      留言 取消回复

      要发表评论,您必须先登录。

      搜索

      分类

      • R语言
      • TCGA数据挖掘
      • 单细胞RNA-seq测序
      • 在线会议直播预告与回放
      • 数据分析那些事儿分类
      • 未分类
      • 生信星球
      • 老俊俊的生信笔记

      投稿培训

      免费

      alphafold2培训

      免费

      群晖配置培训

      免费

      最新博文

      Nature | 单细胞技术揭示衰老细胞与肌肉再生
      301月2023
      lncRNA和miRNA生信分析系列讲座免费视频课和课件资源包,干货满满
      301月2023
      如何快速批量修改 Git 提交记录中的用户信息
      261月2023
      logo-eduma-the-best-lms-wordpress-theme

      (00) 123 456 789

      weinfoadmin@weinformatics.cn

      恒诺新知

      • 关于我们
      • 博客
      • 联系
      • 成为一名讲师

      链接

      • 课程
      • 事件
      • 展示
      • 问答

      支持

      • 文档
      • 论坛
      • 语言包
      • 发行状态

      推荐

      • iHub汉语代码托管
      • iLAB耗材管理
      • WooCommerce
      • 丁香园论坛

      weinformatics 即 恒诺新知。ICP备案号:粤ICP备19129767号

      • 关于我们
      • 博客
      • 联系
      • 成为一名讲师

      要成为一名讲师吗?

      加入数以千计的演讲者获得100%课时费!

      现在开始

      用你的站点账户登录

      忘记密码?

      还不是会员? 现在注册

      注册新帐户

      已经拥有注册账户? 现在登录

      close
      会员购买 你还没有登录,请先登录
      • ¥99 VIP-1个月
      • ¥199 VIP-半年
      • ¥299 VIP-1年
      在线支付 激活码

      立即支付
      支付宝
      微信支付
      请使用 支付宝 或 微信 扫码支付
      登录
      注册|忘记密码?